-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing unneeded and unused permissions (#11)
- Loading branch information
Showing
31 changed files
with
3,255 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Version 0.0.5 release! | ||
|
||
* Removed unneeded and unused internet permissions. | ||
|
||
If you find a bug, have a feature request, or have other concerns, please let me know on the issue tracker at https://github.com/alexjyong/BabbyPaint/issues. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="dev.alexjyong.babbypaint" version="0.0.4" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget id="dev.alexjyong.babbypaint" version="0.0.5" | ||
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>BabbyPaint</name> | ||
<description>Simple Paint app for kids</description> | ||
<author email="[email protected]" href="https://alexjyong.dev"> | ||
Alex Yong | ||
</author> | ||
<content src="index.html" /> | ||
<allow-intent href="http://*/*" /> | ||
<allow-intent href="https://*/*" /> | ||
|
||
<platform name="android"> | ||
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/screen/android/play_store_512.png" /> | ||
<icon src="icon/android/res/mipmap-mdpi/icon.png" density="mdpi"/> | ||
<icon src="icon/android/res/mipmap-hdpi/icon.png" density="hdpi"/> | ||
<icon src="icon/android/res/mipmap-xhdpi/icon.png" density="xhdpi"/> | ||
<icon src="icon/android/res/mipmap-xxhdpi/icon.png" density="xxhdpi"/> | ||
<icon src="icon/android/res/mipmap-xxxhdpi/icon.png" density="xxxhdpi"/> | ||
<!-- Remove INTERNET permission --> | ||
<custom-preference name="android-manifest/uses-permission[@android:name='android.permission.INTERNET']" delete="true" /> | ||
|
||
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/screen/android/play_store_512.png" /> | ||
<icon src="icon/android/res/mipmap-mdpi/icon.png" density="mdpi"/> | ||
<icon src="icon/android/res/mipmap-hdpi/icon.png" density="hdpi"/> | ||
<icon src="icon/android/res/mipmap-xhdpi/icon.png" density="xhdpi"/> | ||
<icon src="icon/android/res/mipmap-xxhdpi/icon.png" density="xxhdpi"/> | ||
<icon src="icon/android/res/mipmap-xxxhdpi/icon.png" density="xxxhdpi"/> | ||
</platform> | ||
</widget> |
Oops, something went wrong.