Skip to content

Commit

Permalink
Update to AndroidX
Browse files Browse the repository at this point in the history
  • Loading branch information
angelabauer committed Apr 22, 2019
1 parent 84ae6bd commit 96ee515
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 23 deletions.
10 changes: 5 additions & 5 deletions android/app/build.gradle
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 27
compileSdkVersion 28

lintOptions {
disable 'InvalidPackage'
Expand All @@ -34,10 +34,10 @@ android {
defaultConfig {
applicationId "co.appbrewery.quizzler"
minSdkVersion 16
targetSdkVersion 27
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
Expand All @@ -54,6 +54,6 @@ flutter {

dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
}
2 changes: 2 additions & 0 deletions android/gradle.properties
@@ -1 +1,3 @@
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536M
19 changes: 1 addition & 18 deletions lib/main.dart
Expand Up @@ -90,25 +90,8 @@ class _QuizPageState extends State<QuizPage> {
}
}


















/*
question1: 'You can lead a cow down stairs but not up stairs.', false,
question2: 'Approximately one quarter of human bones are in the feet.', true,
question3: 'A slug\'s blood is green.', true,
*/
*/

0 comments on commit 96ee515

Please sign in to comment.