File tree Expand file tree Collapse file tree 11 files changed +59
-48
lines changed
Expand file tree Collapse file tree 11 files changed +59
-48
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ branches:
66language : android
77
88jdk :
9- - oraclejdk8
9+ - openjdk8
1010
1111before_install :
1212 - pip install --user codecov
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencies {
3434 implementation "com.github.parse-community.Parse-SDK-Android:ktx:latest.version.here"
3535}
3636```
37- replacing ` latest.version.here ` with the latest released version (see JitPack badge above)
37+ replacing ` latest.version.here ` with the latest released version (see JitPack badge above).
3838
3939### Setup
4040Initialize Parse in a custom class that extends ` Application ` :
Original file line number Diff line number Diff line change 11buildscript {
2- ext. kotlin_version = ' 1.3.21 '
2+ ext. kotlin_version = " 1.3.61 "
33 repositories {
44 google()
55 jcenter()
66 }
77 dependencies {
8- classpath ' com.android.tools.build:gradle:3.3.1 '
9- classpath ' org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2 '
10- classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
8+ classpath " com.android.tools.build:gradle:3.5.2 "
9+ classpath " org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3 "
10+ classpath " com.github.dcendents:android-maven-gradle-plugin:2.1"
1111 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1212 }
1313}
1414
1515plugins {
16- id ' com.github.ben-manes.versions' version ' 0.20.0 '
16+ id " com.github.ben-manes.versions" version " 0.27.0 "
1717}
1818
1919allprojects {
Original file line number Diff line number Diff line change 1- apply plugin : ' com.android.library'
2- apply plugin : ' kotlin-android'
1+ apply plugin : " com.android.library"
2+ apply plugin : " kotlin-android"
33
44android {
55 compileSdkVersion rootProject. ext. compileSdkVersion
@@ -13,24 +13,32 @@ android {
1313 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1414 }
1515
16+ packagingOptions {
17+ exclude " **/BuildConfig.class"
18+ }
19+
1620 lintOptions {
1721 abortOnError false
1822 }
1923
2024 buildTypes {
2125 release {
2226 minifyEnabled false
23- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
27+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
2428 }
2529 }
2630
2731}
2832
33+ ext {
34+ coroutinesVersion = " 1.2.2"
35+ }
36+
2937dependencies {
3038 api " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
31- api ' org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.2 '
32- api ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.2 '
33- implementation project(' :parse' )
39+ api " org.jetbrains.kotlinx:kotlinx-coroutines-core:$c oroutinesVersion "
40+ api " org.jetbrains.kotlinx:kotlinx-coroutines-android:$c oroutinesVersion "
41+ implementation project(" :parse" )
3442}
3543
36- apply from : ' https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle'
44+ apply from : " https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
Original file line number Diff line number Diff line change 1- apply plugin : ' com.android.library'
1+ apply plugin : " com.android.library"
22
33android {
44 compileSdkVersion rootProject. ext. compileSdkVersion
@@ -14,7 +14,7 @@ android {
1414 }
1515
1616 packagingOptions {
17- exclude ' **/BuildConfig.class'
17+ exclude " **/BuildConfig.class"
1818 }
1919
2020 lintOptions {
@@ -24,15 +24,15 @@ android {
2424 buildTypes {
2525 release {
2626 minifyEnabled false
27- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
27+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
2828 }
2929 }
3030
3131}
3232
3333dependencies {
34- api " com.google.firebase:firebase-messaging:17.3.4 "
35- implementation project(' :parse' )
34+ api " com.google.firebase:firebase-messaging:20.0.1 "
35+ implementation project(" :parse" )
3636}
3737
38- apply from : ' https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle'
38+ apply from : " https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
Original file line number Diff line number Diff line change 1- apply plugin : ' com.android.library'
1+ apply plugin : " com.android.library"
22
33android {
44 compileSdkVersion rootProject. ext. compileSdkVersion
@@ -14,7 +14,7 @@ android {
1414 }
1515
1616 packagingOptions {
17- exclude ' **/BuildConfig.class'
17+ exclude " **/BuildConfig.class"
1818 }
1919
2020 lintOptions {
@@ -24,7 +24,7 @@ android {
2424 buildTypes {
2525 release {
2626 minifyEnabled false
27- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
27+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
2828 }
2929 }
3030
@@ -33,8 +33,8 @@ android {
3333dependencies {
3434 // last version for GCM to be supported
3535 api " com.google.android.gms:play-services-gcm:12.0.1"
36- api " com.firebase:firebase-jobdispatcher:0.8.5 "
37- implementation project(' :parse' )
36+ api " com.firebase:firebase-jobdispatcher:0.8.6 "
37+ implementation project(" :parse" )
3838}
3939
40- apply from : ' https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle'
40+ apply from : " https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
Original file line number Diff line number Diff line change 1- # Thu Feb 14 09:49:29 CST 2019
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
3333# Use the maximum available, or set MAX_FD != -1 to use that value.
3434MAX_FD=" maximum"
3535
36- warn ( ) {
36+ warn () {
3737 echo " $* "
3838}
3939
40- die ( ) {
40+ die () {
4141 echo
4242 echo " $* "
4343 echo
@@ -155,7 +155,7 @@ if $cygwin ; then
155155fi
156156
157157# Escape application args
158- save ( ) {
158+ save () {
159159 for i do printf %s\\ n " $i " | sed " s/'/'\\\\ ''/g;1s/^/'/;\$ s/\$ /' \\\\ /" ; done
160160 echo " "
161161}
Original file line number Diff line number Diff line change 1- apply plugin : ' com.android.library'
1+ apply plugin : " com.android.library"
22
3- apply plugin : ' kotlin-android'
3+ apply plugin : " kotlin-android"
44
55android {
66 compileSdkVersion rootProject. ext. compileSdkVersion
@@ -15,22 +15,26 @@ android {
1515
1616 }
1717
18+ packagingOptions {
19+ exclude " **/BuildConfig.class"
20+ }
21+
1822 lintOptions {
1923 abortOnError false
2024 }
2125
2226 buildTypes {
2327 release {
2428 minifyEnabled false
25- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
29+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
2630 }
2731 }
2832
2933}
3034
3135dependencies {
3236 api " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
33- implementation project(' :parse' )
37+ implementation project(" :parse" )
3438}
3539
36- apply from : ' https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle'
40+ apply from : " https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
You can’t perform that action at this time.
0 commit comments