Skip to content

Commit 538d6f7

Browse files
committed
Merge branch 'release/0.2.4'
2 parents 4ac1be4 + d9f7f98 commit 538d6f7

File tree

9 files changed

+20
-24
lines changed

9 files changed

+20
-24
lines changed

.idea/codeStyles/Project.xml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
}
1313

1414
dependencies {
15-
classpath 'com.android.tools.build:gradle:3.5.3'
15+
classpath 'com.android.tools.build:gradle:3.6.0'
1616
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1717
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.1.1"
1818
// NOTE: Do not place your application dependencies here; they belong

commons/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

5-
version = "0.6.0"
5+
version = "0.6.1"
66

77
android {
88
compileSdkVersion 28
@@ -50,7 +50,7 @@ dependencies {
5050
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5151
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1"
5252
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0"
53-
api 'androidx.room:room-runtime:2.2.3'
53+
api 'androidx.room:room-runtime:2.2.4'
5454

5555
testImplementation 'androidx.test:core:1.2.0'
5656
testImplementation 'androidx.arch.core:core-testing:2.1.0'
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Aug 21 20:44:10 CEST 2019
1+
#Mon Feb 24 20:50:38 CET 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

sync/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44
apply plugin: "kotlin-kapt"
55

6-
version = "0.2.3"
6+
version = "0.2.4"
77

88
android {
99
compileSdkVersion 28
@@ -64,16 +64,16 @@ dependencies {
6464
implementation 'androidx.core:core-ktx:1.3.0-alpha01'
6565
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
6666
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
67-
implementation 'androidx.work:work-runtime:2.3.1'
68-
implementation 'androidx.work:work-runtime-ktx:2.3.1'
67+
implementation 'androidx.work:work-runtime:2.3.2'
68+
implementation 'androidx.work:work-runtime-ktx:2.3.2'
6969
implementation 'androidx.recyclerview:recyclerview:1.1.0'
7070
implementation 'androidx.preference:preference:1.1.0'
71-
implementation 'com.google.android.material:material:1.2.0-alpha04'
71+
implementation 'com.google.android.material:material:1.2.0-alpha05'
7272
implementation 'com.google.code.gson:gson:2.8.5'
7373
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
7474
implementation 'com.squareup.retrofit2:converter-gson:2.6.0'
7575
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.0'
76-
kapt 'androidx.room:room-compiler:2.2.3'
76+
kapt 'androidx.room:room-compiler:2.2.4'
7777

7878
testImplementation 'junit:junit:4.12'
7979
testImplementation 'androidx.test:core:1.2.0'

sync/src/debug/AndroidManifest.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android"
34
xmlns:tools="http://schemas.android.com/tools"
45
package="fr.geonature.sync">
56

67
<application
78
android:name=".MainApplication"
8-
android:networkSecurityConfig="@xml/network_security_config"
9-
tools:targetApi="n"
10-
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
9+
android:usesCleartextTraffic="true"
10+
tools:ignore="AllowBackup,GoogleAppIndexingWarning"
11+
tools:targetApi="n">
1112

1213
</application>
1314

sync/src/debug/res/xml/network_security_config.xml

-6
This file was deleted.

sync/version.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sun Feb 23 14:55:02 CET 2020
2-
VERSION_CODE=2070
1+
#Tue Feb 25 21:34:41 CET 2020
2+
VERSION_CODE=2080

0 commit comments

Comments
 (0)