File tree Expand file tree Collapse file tree 5 files changed +20
-5
lines changed Expand file tree Collapse file tree 5 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -76,3 +76,5 @@ assets/keys/*
7676lib /keys.dart
7777keys /* .json
7878keys /* .key
79+
80+ android /upload-keystore.uu
Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
2525apply plugin : ' kotlin-android'
2626apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
2727
28+ def keystoreProperties = new Properties ()
29+ def keystorePropertiesFile = rootProject. file(' key.properties' )
30+ if (keystorePropertiesFile. exists()) {
31+ keystoreProperties. load(new FileInputStream (keystorePropertiesFile))
32+ }
33+
2834android {
2935 compileSdkVersion 30
3036
@@ -49,11 +55,20 @@ android {
4955 }
5056 }
5157
58+ signingConfigs {
59+ release {
60+ keyAlias keystoreProperties[' keyAlias' ]
61+ keyPassword keystoreProperties[' keyPassword' ]
62+ storeFile keystoreProperties[' storeFile' ] ? file(keystoreProperties[' storeFile' ]) : null
63+ storePassword keystoreProperties[' storePassword' ]
64+ }
65+ }
66+
5267 buildTypes {
5368 release {
5469 // TODO: Add your own signing config for the release build.
5570 // Signing with the debug keys for now, so `flutter run --release` works.
56- signingConfig signingConfigs. debug
71+ signingConfig signingConfigs. release
5772 }
5873 }
5974}
Original file line number Diff line number Diff line change @@ -31,9 +31,7 @@ <h1>Um Emblu</h1>
3131
3232 < h1 > Teymið að baki Emblu</ h1 >
3333
34- < p > Upphafsmaður Emblu og höfundur iOS-appsins er < strong > Sveinbjörn Þórðarson</ strong > .</ p >
35-
36- < p > Android-appið smíðaði < strong > Berglind Ósk Bergsdóttir</ strong > .</ p >
34+ < p > Upphafsmaður Emblu og höfundur smáforritsins er < strong > Sveinbjörn Þórðarson</ strong > .</ p >
3735
3836 < p > Önnur í teymi Miðeindar eru:</ p >
3937
Original file line number Diff line number Diff line change 11name : embla
22description : Icelandic-language voice assistant.
33publish_to : ' none' # Remove this line if you wish to publish to pub.dev
4- version : 1.1.0+1
4+ version : 1.1.0+12
55
66environment :
77 sdk : " >=2.7.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments