File tree 14 files changed +24
-24
lines changed
ParseLoginSampleCodeCustomization
ParseLoginSampleLayoutOverride
ParseLoginSampleWithDispatchActivity
src/main/java/com/parse/ui/widget/sample
src/main/java/com/parse/ui/login
14 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 10
10
11
11
before_install :
12
12
- mkdir "$ANDROID_HOME/licenses" || true
13
- - echo "d56f5187479451eabf01fb78af6dfcb131a6481e " > "$ANDROID_HOME/licenses/android-sdk-license"
13
+ - echo "24333f8a63b6825ea9c5514f83c2829b004d1fee " > "$ANDROID_HOME/licenses/android-sdk-license"
14
14
15
15
script :
16
16
- ./gradlew clean build
17
17
18
18
cache :
19
19
directories :
20
20
- $HOME/.gradle
21
- - $HOME/.m2/repository
21
+ - $HOME/.m2/repository
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
15
15
dependencies {
16
16
// rootProject.ext.* variables are defined in project gradle file, you can also use path here.
17
17
implementation project(' :login' )
18
- implementation rootProject . ext . androidSupport
18
+ implementation " androidx.appcompat:appcompat:1.0.2 "
19
19
implementation rootProject. ext. parse
20
20
implementation rootProject. ext. parseFacebookUtils
21
21
implementation rootProject. ext. parseTwitterUtils
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
15
15
dependencies {
16
16
// rootProject.ext.* variables are defined in project gradle file, you can also use path here.
17
17
implementation project(' :login' )
18
- implementation rootProject . ext . androidSupport
18
+ implementation " androidx.appcompat:appcompat:1.0.2 "
19
19
implementation rootProject. ext. parse
20
20
implementation rootProject. ext. parseFacebookUtils
21
21
implementation rootProject. ext. parseTwitterUtils
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
15
15
dependencies {
16
16
// rootProject.ext.* variables are defined in project gradle file, you can also use path here.
17
17
implementation project(' :login' )
18
- implementation rootProject . ext . androidSupport
18
+ implementation " androidx.appcompat:appcompat:1.0.2 "
19
19
implementation rootProject. ext. parse
20
20
implementation rootProject. ext. parseFacebookUtils
21
21
implementation rootProject. ext. parseTwitterUtils
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
15
15
dependencies {
16
16
// rootProject.ext.* variables are defined in project gradle file, you can also use path here.
17
17
implementation project(' :login' )
18
- implementation rootProject . ext . androidSupport
18
+ implementation " androidx.appcompat:appcompat:1.0.2 "
19
19
implementation rootProject. ext. parse
20
20
implementation rootProject. ext. parseFacebookUtils
21
21
implementation rootProject. ext. parseTwitterUtils
Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ android {
16
16
}
17
17
18
18
dependencies {
19
- implementation " com.android.support :appcompat-v7: ${ supportLibVersion } "
19
+ implementation " androidx.appcompat :appcompat:1.0.2 "
20
20
implementation project(' :widget' )
21
21
}
Original file line number Diff line number Diff line change 1
1
package com .parse .ui .widget .sample ;
2
2
3
3
import android .os .Bundle ;
4
- import android . support . v7 .app .AppCompatActivity ;
4
+ import androidx . appcompat .app .AppCompatActivity ;
5
5
6
6
public class MainActivity extends AppCompatActivity {
7
7
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public void onCreate() {
11
11
super .onCreate ();
12
12
13
13
Parse .Configuration configuration = new Parse .Configuration .Builder (this )
14
+ .server ("http://localhost" )
14
15
.build ();
15
16
Parse .initialize (configuration );
16
17
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ buildscript {
4
4
jcenter()
5
5
}
6
6
dependencies {
7
- classpath ' com.android.tools.build:gradle:3.1.3 '
7
+ classpath ' com.android.tools.build:gradle:3.3.2 '
8
8
classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
9
9
}
10
10
}
@@ -18,15 +18,12 @@ allprojects {
18
18
}
19
19
20
20
ext {
21
- compileSdkVersion = 27
21
+ compileSdkVersion = 28
22
22
23
23
minSdkVersion = 15
24
- targetSdkVersion = 27
24
+ targetSdkVersion = 28
25
25
26
- supportLibVersion = " 27.1.1"
27
- androidSupport = " com.android.support:support-v4:${ supportLibVersion} "
28
-
29
- parse = " com.github.parse-community.Parse-SDK-Android:parse:1.18.0"
30
- parseFacebookUtils = ' com.github.parse-community:ParseFacebookUtils-Android:1.12.0'
31
- parseTwitterUtils = ' com.github.parse-community:ParseTwitterUtils-Android:1.12.0'
26
+ parse = " com.github.parse-community.Parse-SDK-Android:parse:1.19.0"
27
+ parseFacebookUtils = ' com.github.parse-community:ParseFacebookUtils-Android:1.13.0'
28
+ parseTwitterUtils = ' com.github.parse-community:ParseTwitterUtils-Android:1.13.0'
32
29
}
Original file line number Diff line number Diff line change
1
+ android.enableJetifier =true
2
+ android.useAndroidX =true
Original file line number Diff line number Diff line change 1
- # Wed Jul 18 10:59:11 CDT 2018
1
+ # Fri Mar 08 09:51:04 CST 2019
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.4 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.1 -all.zip
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ android {
35
35
}
36
36
37
37
dependencies {
38
- api " com.android.support :appcompat-v7: $s upportLibVersion "
38
+ api " androidx.appcompat :appcompat:1.0.2 "
39
39
api rootProject. ext. parse
40
40
41
41
compileOnly rootProject. ext. parseFacebookUtils
Original file line number Diff line number Diff line change 29
29
import android .content .pm .PackageManager .NameNotFoundException ;
30
30
import android .os .Build ;
31
31
import android .os .Bundle ;
32
- import android . support . v4 .app .FragmentTransaction ;
33
- import android . support . v7 .app .AppCompatActivity ;
32
+ import androidx . fragment .app .FragmentTransaction ;
33
+ import androidx . appcompat .app .AppCompatActivity ;
34
34
import android .util .Log ;
35
35
import android .view .Window ;
36
36
Original file line number Diff line number Diff line change 23
23
24
24
import android .annotation .TargetApi ;
25
25
import android .os .Build ;
26
- import android . support . v4 .app .Fragment ;
27
- import android . support . v4 .app .FragmentActivity ;
26
+ import androidx . fragment .app .Fragment ;
27
+ import androidx . fragment .app .FragmentActivity ;
28
28
import android .util .Log ;
29
29
import android .widget .Toast ;
30
30
You can’t perform that action at this time.
0 commit comments