Skip to content

Commit 6333889

Browse files
committed
Fixed signing, updated docs and bumped version
1 parent 608ae59 commit 6333889

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ assets/keys/*
7676
lib/keys.dart
7777
keys/*.json
7878
keys/*.key
79+
80+
android/upload-keystore.uu

android/app/build.gradle

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
2525
apply plugin: 'kotlin-android'
2626
apply 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+
2834
android {
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
}

android/app/upload-keystore.uu

2.19 KB
Binary file not shown.

docs/about.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: embla
22
description: Icelandic-language voice assistant.
33
publish_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

66
environment:
77
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)