Upgrade library dependencies
This commit is contained in:
+5
-4
@@ -21,7 +21,7 @@ android {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
lintOptions {
|
||||
lint {
|
||||
// Workaround for KotlinNullPointerException in :app:lintVitalAnalyzeRelease
|
||||
checkReleaseBuilds false
|
||||
}
|
||||
@@ -30,8 +30,9 @@ android {
|
||||
dependencies {
|
||||
implementation 'net.moasdawiki:moasdawiki-server:3.2.1'
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
implementation 'androidx.appcompat:appcompat:1.4.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.4.1'
|
||||
// androidx.preference 1.2.0 causes dependency conflict
|
||||
implementation 'androidx.preference:preference:1.1.1'
|
||||
compileOnly 'org.jetbrains:annotations:22.0.0'
|
||||
testImplementation 'org.testng:testng:7.4.0'
|
||||
compileOnly 'org.jetbrains:annotations:23.0.0'
|
||||
testImplementation 'org.testng:testng:7.5'
|
||||
}
|
||||
|
||||
@@ -16,11 +16,12 @@
|
||||
android:name=".WikiEngineApplication"
|
||||
android:theme="@style/AppTheme"
|
||||
android:usesCleartextTraffic="true"
|
||||
android:allowBackup="false">
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="false"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules">
|
||||
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<data-extraction-rules>
|
||||
<cloud-backup>
|
||||
<exclude domain="root" />
|
||||
<exclude domain="file" />
|
||||
<exclude domain="database" />
|
||||
<exclude domain="sharedpref" />
|
||||
<exclude domain="external" />
|
||||
</cloud-backup>
|
||||
<device-transfer>
|
||||
<exclude domain="root" />
|
||||
<exclude domain="file" />
|
||||
<exclude domain="database" />
|
||||
<exclude domain="sharedpref" />
|
||||
<exclude domain="external" />
|
||||
</device-transfer>
|
||||
</data-extraction-rules>
|
||||
Reference in New Issue
Block a user