Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
v1.0.0 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekaputra07 committed Jun 10, 2019
1 parent 573f44c commit bcc90a3
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 2 deletions.
24 changes: 22 additions & 2 deletions android/app/build.gradle
Expand Up @@ -44,8 +44,8 @@ android {
minSdkVersion 21
targetSdkVersion 27
multiDexEnabled true
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
versionCode 2 //flutterVersionCode.toInteger()
versionName "1.0.0" // flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand All @@ -68,8 +68,28 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

splits {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable true
// By default all ABIs are included, so use reset() and include to specify that we only
// want APKs for armeabi-v7a and arm64-v8a.

// Resets the list of ABIs that Gradle should create APKs for to none.
reset()

// Specifies a list of ABIs that Gradle should create APKs for.
include "armeabi-v7a", "arm64-v8a"

// Specifies that we do not want to also generate a universal APK that includes all ABIs.
universalApk false
}
}
}


flutter {
source '../..'
}
Expand Down
Binary file added appstore/gatrabali.xd
Binary file not shown.
Binary file added appstore/v1.0.0/2019-06-10 11.26.50.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added appstore/v1.0.0/2019-06-10 11.26.59.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added appstore/v1.0.0/2019-06-10 11.27.07.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added appstore/v1.0.0/2019-06-10 11.28.03.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added appstore/v1.0.0/Banner.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions lib/profile.dart
Expand Up @@ -186,6 +186,8 @@ class _ProfileState extends State<Profile> {
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset('assets/images/icon.png', width: 50, height: 50),
SizedBox(height: 30.0),
Text(
'Untuk dapat menyimpan berita silahkan login dengan salah satu dari layanan media sosial berikut ini:',
textAlign: TextAlign.center,
Expand Down

0 comments on commit bcc90a3

Please sign in to comment.