Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4de3548a authored by Jonathan Klee's avatar Jonathan Klee
Browse files

Add local Java KeyStore to ease development

parent 795b8ff9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@ bin/
.classpath
.output/
.settings/
*keystore
play-services-location/core/provider/.cxx/
play-services-location/core/provider/src/main/cpp/
play-services-location/core/provider/src/main/java/

keystore/platform.jks

0 → 100644
+2.98 KiB

File added.

No diff preview for this file type.

+11 −0
Original line number Diff line number Diff line
@@ -164,6 +164,13 @@ android {
            keyPassword keystore_password
        }

        debugConfig {
            storeFile file("../keystore/platform.jks")
            storePassword "platform"
            keyAlias "platform"
            keyPassword "platform"
        }

        releaseDev {
            storeFile file("e.keystore")
            storePassword keystore_password
@@ -182,6 +189,10 @@ android {

    buildTypes {

        debug {
            signingConfig signingConfigs.debugConfig
        }

        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+10 −0
Original line number Diff line number Diff line
@@ -20,8 +20,18 @@ android {
        targetSdkVersion androidTargetSdk
    }

    signingConfigs {
        debugConfig {
            storeFile file("../keystore/platform.jks")
            storePassword "platform"
            keyAlias "platform"
            keyPassword "platform"
        }
    }

    buildTypes {
        debug {
            signingConfig signingConfigs.debugConfig
            postprocessing {
                removeUnusedCode true
                removeUnusedResources false