mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 06:22:14 +02:00
Change gradle configuration to sign release apk. Remove Daydream intent from AndroidManifest
This commit is contained in:
parent
eeed3ae82d
commit
8c6166d6e5
2 changed files with 9 additions and 6 deletions
|
@ -27,6 +27,14 @@ android {
|
|||
'-DDISABLE_KTX_CACHE=OFF'
|
||||
}
|
||||
}
|
||||
signingConfigs {
|
||||
release {
|
||||
storeFile file(HIFI_ANDROID_KEYSTORE)
|
||||
storePassword HIFI_ANDROID_KEYSTORE_PASSWORD
|
||||
keyAlias HIFI_ANDROID_KEY_ALIAS
|
||||
keyPassword HIFI_ANDROID_KEY_PASSWORD
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
|
@ -38,6 +46,7 @@ android {
|
|||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -49,12 +49,6 @@
|
|||
android:label="@string/app_name"
|
||||
android:launchMode="singleTop"
|
||||
>
|
||||
|
||||
<intent-filter>
|
||||
<category android:name="com.google.intent.category.DAYDREAM"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data android:name="android.app.lib_name" android:value="native-lib"/>
|
||||
<meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
|
||||
<meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
|
||||
|
|
Loading…
Reference in a new issue