-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
70 lines (63 loc) · 3.86 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.i8xnet.watermark" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Watermark</name>
<description>تطبيق يتيح لك إضافة علامات مائية إلى الصور. يمكن للمستخدمين تحميل الصور، اختيار علامات مائية، وضبط حجم وموقع العلامة المائية.</description>
<author email="rn0x.me@gmail.com" href="https://i8x.net">i8xnetTeam</author>
<content src="index.html" />
<!-- Allow-intent settings -->
<access origin="*"/>
<allow-navigation href="*"/>
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<!-- Preferences -->
<preference name="KeepRunning" value="true" />
<preference name="ErrorUrl" value="error.html" />
<preference name="loglevel" value="DEBUG" />
<preference name="Fullscreen" value="false" />
<preference name="DisallowOverscroll" value="true" />
<preference name="NavigationBarLight" value="true" />
<preference name="Orientation" value="portrait" />
<preference name="BackgroundColor" value="#f5f5f5" />
<preference name="HideKeyboardFormAccessoryBar" value="true" />
<preference name="NavigationBarBackgroundColor" value="#f5f5f5" />
<preference name="SplashScreenBackgroundColor" value="#f5f5f5" />
<preference name="StatusBarBackgroundColor" value="#f5f5f5" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarStyle" value="default" />
<allow-intent href="market:*" />
<allow-intent href="geo:*" />
<!-- Platform-specific preferences -->
<platform name="android">
<!-- Preferences (Android) -->
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<preference name="android-compileSdkVersion" value="34" />
<preference name="AndroidLaunchMode" value="singleInstance"/>
<preference name="AndroidXEnabled" value="true" />
<preference name="GradleVersion" value="8.4" />
<preference name="AndroidGradlePluginVersion" value="8.1.1" />
<preference name="android-minSdkVersion" value="26" />
<preference name="android-targetSdkVersion" value="34" />
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" /> -->
</config-file>
<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true"/>
<application android:requestLegacyExternalStorage="true" />
</edit-config>
<!-- Splash Screen settings -->
<preference name="AutoHideSplashScreen" value="true" />
<preference name="FadeSplashScreen" value="false"/>
<preference name="SplashScreenDelay" value="2000" />
<preference name="AndroidWindowSplashScreenBackground" value="#f5f5f5" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="resources/splash.png" />
<!-- Icons -->
<icon density="ldpi" src="resources/mipmap-hdpi/ic_launcher.png" />
<icon density="mdpi" src="resources/mipmap-mdpi/ic_launcher.png" />
<icon density="xhdpi" src="resources/mipmap-xhdpi/ic_launcher.png" />
<icon density="xxhdpi" src="resources/mipmap-xxhdpi/ic_launcher.png" />
<icon density="xxxhdpi" src="resources/mipmap-xxxhdpi/ic_launcher.png" />
</platform>
</widget>