Skip to content

Commit e89dc78

Browse files
committed
Update project, migrate to androidx
1 parent cb7db83 commit e89dc78

19 files changed

+162
-276
lines changed

.idea/caches/build_file_checksums.ser

534 Bytes
Binary file not shown.

.idea/codeStyleSettings.xml

Lines changed: 0 additions & 229 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 27
5-
buildToolsVersion '27.0.2'
4+
compileSdkVersion 28
5+
buildToolsVersion '28.0.3'
66

77
defaultConfig {
88
applicationId "org.monksanctum.xand11"
99
minSdkVersion 21
10-
targetSdkVersion 27
10+
targetSdkVersion 28
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -24,10 +24,10 @@ android {
2424
}
2525

2626
dependencies {
27-
compile fileTree(dir: 'libs', include: ['*.jar'])
28-
testCompile 'junit:junit:4.12'
29-
compile 'com.android.support:appcompat-v7:27.0.2'
30-
compile 'com.android.support:design:27.0.2'
31-
compile 'com.android.support:preference-v14:27.0.2'
32-
compile 'com.android.support:preference-v7:27.0.2'
27+
api fileTree(dir: 'libs', include: ['*.jar'])
28+
testImplementation 'junit:junit:4.12'
29+
api 'androidx.appcompat:appcompat:1.0.0'
30+
api 'com.google.android.material:material:1.1.0-alpha01'
31+
api 'androidx.legacy:legacy-preference-v14:1.0.0'
32+
api 'androidx.preference:preference:1.0.0'
3333
}

app/src/main/java/org/monksanctum/xand11/XService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import android.os.Build.VERSION;
2626
import android.os.Build.VERSION_CODES;
2727
import android.os.IBinder;
28-
import android.support.v4.content.LocalBroadcastManager;
28+
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
2929
import android.util.Log;
3030

3131
import org.monksanctum.xand11.activity.XActivityManager;

0 commit comments

Comments
 (0)