Skip to content

Commit

Permalink
build: update gradle package
Browse files Browse the repository at this point in the history
  • Loading branch information
feilongfl committed May 30, 2022
1 parent 57edef5 commit 8b8ee85
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 27 deletions.
42 changes: 21 additions & 21 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ android {
keyAlias 'github_x0b'
}
}
compileSdkVersion 30
compileSdkVersion 31
ndkVersion '24.0.8215888'
defaultConfig {
applicationId 'io.github.x0b.rcx'
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 31
versionCode 200 // last digit is reserved for ABI, only ever end on 0!
versionName '1.13-dev'
resConfigs "en", "de" // restrict to used languages
Expand Down Expand Up @@ -88,16 +88,16 @@ repositories {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.core:core:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.browser:browser:1.3.0'
implementation 'androidx.core:core:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.browser:browser:1.4.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.preference:preference:1.2.0'
implementation 'com.google.android.material:material:1.6.0'
implementation 'com.github.leinardi:FloatingActionButtonSpeedDial:3.1.1'
implementation 'org.markdownj:markdownj-core:0.4'
implementation 'jp.wasabeef:recyclerview-animators:4.0.2'
Expand All @@ -107,28 +107,28 @@ dependencies {
implementation "com.github.x0b.appcenter-sdk-android:appcenter-analytics:${appCenterSdkVersion}"
implementation "com.github.x0b.appcenter-sdk-android:appcenter-crashes:${appCenterSdkVersion}"
// Thumbnails
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
// REST Client
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
debugImplementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.7'
debugImplementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.7'
// JSON
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
// Timestmps
implementation 'com.github.x0b:rfc3339parser:2.0.0'
// SAF/WebDAV
implementation project(':safdav')
implementation 'org.nanohttpd:nanohttpd:2.3.1'
// Java 8+ library support
// TODO: replace with coreLibraryDesugar once available
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.3'
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.3'
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.4'
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.4'
// App intro
implementation 'com.github.AppIntro:AppIntro:6.1.0'
// TEST
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<activity
android:name=".MainActivity"
android:label="@string/app_short_name"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
Expand Down Expand Up @@ -122,6 +123,7 @@
<activity
android:name=".SharingActivity"
android:label="@string/app_name"
android:exported="true"
android:theme="@style/AppTheme.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android.enableJetifier=false
android.useAndroidX=true
# android.enableR8=true
# android.enableR8.fullMode=true
org.gradle.jvmargs=-Xmx1536m
org.gradle.jvmargs=-Xmx2048m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
Expand Down
10 changes: 5 additions & 5 deletions safdav/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ task prepareKotlinBuildScriptModel {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.preference:preference:1.1.1'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'androidx.preference:preference:1.2.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

0 comments on commit 8b8ee85

Please sign in to comment.