-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
43 lines (38 loc) · 2.2 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="online.streamely.www" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Streamely</name>
<description>A simple app that allows users to stream movies and TV shows for free directly on their Android devices without ads.</description>
<author email="[email protected]">
elyeandre
</author>
<content src="index.html" />
<allow-navigation href="*"/>
<allow-intent href="*" />
<access origin="*" />
<preference name="AndroidInsecureFileModeEnabled" value="true" />
<preference name="StatusBarBackgroundColor" value="#16191c" />
<preference name="StatusBarOverlaysWebView" value="true" />
<preference name="AndroidBlacklistSecureSocketProtocols" value="SSLv3,TLSv1" />
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<platform name="android">
<resource-file src="res/values/colors.xml" target="/app/src/main/res/values/colors.xml" />
<icon background="@color/background" density="ldpi" foreground="res/icon/android/ldpi-foreground.png" />
<icon background="@color/background" density="mdpi" foreground="res/icon/android/mdpi-foreground.png" />
<icon background="@color/background" density="hdpi" foreground="res/icon/android/hdpi-foreground.png" />
<icon background="@color/background" density="xhdpi" foreground="res/icon/android/xhdpi-foreground.png" />
<icon background="@color/background" density="xxhdpi" foreground="res/icon/android/xxhdpi-foreground.png" />
<icon background="@color/background" density="xxxhdpi" foreground="res/icon/android/xxxhdpi-foreground.png" />
</platform>
<platform name="android">
<resource-file src="res/values/colors.xml" target="/app/src/main/res/values/colors.xml" />
<!-- Default -->
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/screen/android/icon.png" />
<preference name="AndroidWindowSplashScreenBackground" value="#16191c" />
</platform>
<feature name="Toast">
<param name="android-package" value="nl.xservices.plugins.Toast" />
</feature>
<feature name="Launcher">
<param name="android-package" value="com.hutchind.cordova.plugins.launcher.Launcher" />
</feature>
</widget>