mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
Change gradle configuration to sign release apk. Remove Daydream intent from AndroidManifest
This commit is contained in:
parent
3f696df3a5
commit
785c0b634d
2 changed files with 9 additions and 6 deletions
|
@ -27,6 +27,14 @@ android {
|
||||||
'-DDISABLE_KTX_CACHE=OFF'
|
'-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 {
|
compileOptions {
|
||||||
|
@ -38,6 +46,7 @@ android {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
signingConfig signingConfigs.release
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,12 +49,6 @@
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:launchMode="singleTop"
|
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.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.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"/>
|
<meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
|
||||||
|
|
Loading…
Reference in a new issue