creativecreatorormaybenot
Committed by GitHub

Complete AndroidX migration

@shaxxxx Let me know if I missed something.
  1 +## 0.1.3
  2 +
  3 +* Completed AndroidX migration.
  4 +
1 ## 0.1.2+8 5 ## 0.1.2+8
2 6
3 * Updated documentation. 7 * Updated documentation.
@@ -8,7 +8,7 @@ buildscript { @@ -8,7 +8,7 @@ buildscript {
8 } 8 }
9 9
10 dependencies { 10 dependencies {
11 - classpath 'com.android.tools.build:gradle:3.2.1' 11 + classpath 'com.android.tools.build:gradle:3.3.0'
12 } 12 }
13 } 13 }
14 14
@@ -26,7 +26,7 @@ android { @@ -26,7 +26,7 @@ android {
26 26
27 defaultConfig { 27 defaultConfig {
28 minSdkVersion 16 28 minSdkVersion 16
29 - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 29 + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
30 } 30 }
31 lintOptions { 31 lintOptions {
32 disable 'InvalidPackage' 32 disable 'InvalidPackage'
1 org.gradle.jvmargs=-Xmx1536M 1 org.gradle.jvmargs=-Xmx1536M
2 2
  3 +android.useAndroidX=true
  4 +android.enableJetifier=true
@@ -38,7 +38,7 @@ android { @@ -38,7 +38,7 @@ android {
38 targetSdkVersion 28 38 targetSdkVersion 28
39 versionCode flutterVersionCode.toInteger() 39 versionCode flutterVersionCode.toInteger()
40 versionName flutterVersionName 40 versionName flutterVersionName
41 - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 41 + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
42 } 42 }
43 43
44 buildTypes { 44 buildTypes {
@@ -56,6 +56,6 @@ flutter { @@ -56,6 +56,6 @@ flutter {
56 56
57 dependencies { 57 dependencies {
58 testImplementation 'junit:junit:4.12' 58 testImplementation 'junit:junit:4.12'
59 - androidTestImplementation 'com.android.support.test:runner:1.0.2'  
60 - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 59 + androidTestImplementation 'androidx.test:runner:1.1.0'
  60 + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
61 } 61 }
@@ -5,7 +5,7 @@ buildscript { @@ -5,7 +5,7 @@ buildscript {
5 } 5 }
6 6
7 dependencies { 7 dependencies {
8 - classpath 'com.android.tools.build:gradle:3.2.1' 8 + classpath 'com.android.tools.build:gradle:3.3.0'
9 } 9 }
10 } 10 }
11 11
1 org.gradle.jvmargs=-Xmx1536M 1 org.gradle.jvmargs=-Xmx1536M
2 2
  3 +android.useAndroidX=true
  4 +android.enableJetifier=true
1 name: wakelock 1 name: wakelock
2 description: This plugin allows you to keep Android and iOS devices awake, i.e. prevent the screen from sleeping by toggling the wakelock of the device on or off. 2 description: This plugin allows you to keep Android and iOS devices awake, i.e. prevent the screen from sleeping by toggling the wakelock of the device on or off.
3 -version: 0.1.2+8 3 +version: 0.1.3
4 author: creativecreatorormaybenot <19204050+creativecreatorormaybenot@users.noreply.github.com> 4 author: creativecreatorormaybenot <19204050+creativecreatorormaybenot@users.noreply.github.com>
5 homepage: https://github.com/creativecreatorormaybenot/wakelock 5 homepage: https://github.com/creativecreatorormaybenot/wakelock
6 6