Android: add dev variant
This commit is contained in:
parent
7afc0bca7a
commit
f99581895a
3 changed files with 18 additions and 0 deletions
android/app
|
@ -69,6 +69,10 @@ android {
|
|||
dimension "default"
|
||||
applicationIdSuffix ".independent"
|
||||
}
|
||||
dev {
|
||||
dimension "default"
|
||||
applicationIdSuffix ".dev"
|
||||
}
|
||||
playstore {
|
||||
dimension "default"
|
||||
}
|
||||
|
|
10
android/app/src/dev/AndroidManifest.xml
Normal file
10
android/app/src/dev/AndroidManifest.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="io.ente.photos">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
</manifest>
|
4
android/app/src/dev/res/values/strings.xml
Normal file
4
android/app/src/dev/res/values/strings.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<resources>
|
||||
<string name="app_name">ente dev</string>
|
||||
<string name="backup">backup dev</string>
|
||||
</resources>
|
Loading…
Add table
Reference in a new issue