Skip to content

Commit

Permalink
Release 1.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjupta committed Apr 2, 2022
1 parent d029fcd commit 66501c2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ GeneratedPluginRegistrant.java
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
app/debug-keystore.jks
app/upload-keystore.jks
17 changes: 13 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,26 @@ android {

signingConfigs {
debug {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
keyAlias keystoreProperties['debugKeyAlias']
keyPassword keystoreProperties['debugKeyPassword']
storeFile keystoreProperties['debugStoreFile'] ? file(keystoreProperties['debugStoreFile']) : null
storePassword keystoreProperties['debugStorePassword']
}
release {
keyAlias keystoreProperties['releaseKeyAlias']
keyPassword keystoreProperties['releaseKeyPassword']
storeFile keystoreProperties['releaseStoreFile'] ? file(keystoreProperties['releaseStoreFile']) : null
storePassword keystoreProperties['releaseStorePassword']
}
}

buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
signingConfig signingConfigs.release
}
}
}

Expand Down
1 change: 1 addition & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.sochem.mobile">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="SoChem"
android:icon="@mipmap/ic_launcher">
Expand Down
1 change: 1 addition & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ void main() async {
runApp(MaterialApp(
title: "Sochem App",
initialRoute: AppRoute,
debugShowCheckedModeBanner: false,
routes: <String, WidgetBuilder>{
AppRoute: (context) => App(),
HomeRoute: (context) => HomeScreen(),
Expand Down

0 comments on commit 66501c2

Please sign in to comment.