lailin преди 4 години
родител
ревизия
7f888d7014
променени са 3 файла, в които са добавени 19 реда и са изтрити 2 реда
  1. 14 1
      taskservice/android/app/build.gradle
  2. 1 1
      taskservice/android/gradle/wrapper/gradle-wrapper.properties
  3. 4 0
      taskservice/android/key.properties

+ 14 - 1
taskservice/android/app/build.gradle

@@ -24,6 +24,10 @@ if (flutterVersionName == null) {
 apply plugin: 'com.android.application'
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
 
+def keystorePropertiesFile = rootProject.file("key.properties")
+def keystoreProperties = new Properties()
+keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
+
 android {
     compileSdkVersion 28
 
@@ -40,11 +44,20 @@ android {
         versionName flutterVersionName
     }
 
+    signingConfigs {
+        release {
+            keyAlias keystoreProperties['keyAlias']
+            keyPassword keystoreProperties['keyPassword']
+            storeFile file(keystoreProperties['storeFile'])
+            storePassword keystoreProperties['storePassword']
+        }
+    }
+
     buildTypes {
         release {
             // TODO: Add your own signing config for the release build.
             // Signing with the debug keys for now, so `flutter run --release` works.
-            signingConfig signingConfigs.debug
+            signingConfig signingConfigs.release
         }
     }
 }

+ 1 - 1
taskservice/android/gradle/wrapper/gradle-wrapper.properties

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

+ 4 - 0
taskservice/android/key.properties

@@ -0,0 +1,4 @@
+storePassword=OznmSi3Ibp7tr2TS
+keyPassword=OznmSi3Ibp7tr2TS
+keyAlias=key
+storeFile=/Users/poto/Documents/keys/key.jks