forked from core/mobile_nebula
Let Android install debug & release APKs side-by-side (#31)
This commit is contained in:
parent
a7c32f5bd4
commit
3123ce5f9a
|
@ -48,3 +48,4 @@ lib/generated_plugin_registrant.dart
|
||||||
/ios/Flutter/.last_build_id
|
/ios/Flutter/.last_build_id
|
||||||
/local.properties
|
/local.properties
|
||||||
/.gradle/
|
/.gradle/
|
||||||
|
*.keystore
|
||||||
|
|
|
@ -70,6 +70,12 @@ android {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
useProguard false
|
useProguard false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
|
||||||
|
resValue 'string', 'app_name', '"Nebula"'
|
||||||
|
}
|
||||||
|
debug {
|
||||||
|
resValue 'string', 'app_name', '"Nebula-DEBUG"'
|
||||||
|
applicationIdSuffix '.debug'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="ic_launcher_background">#f2c10d</color>
|
||||||
|
</resources>
|
|
@ -10,7 +10,7 @@
|
||||||
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
||||||
<application
|
<application
|
||||||
android:name="io.flutter.app.FlutterApplication"
|
android:name="io.flutter.app.FlutterApplication"
|
||||||
android:label="Nebula"
|
android:label="@string/app_name"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<service android:name=".NebulaVpnService"
|
<service android:name=".NebulaVpnService"
|
||||||
android:permission="android.permission.BIND_VPN_SERVICE"
|
android:permission="android.permission.BIND_VPN_SERVICE"
|
||||||
|
|
Loading…
Reference in New Issue