File tree Expand file tree Collapse file tree 6 files changed +20
-18
lines changed
src/main/java/com/turingtechnologies/materialscrollbardemo Expand file tree Collapse file tree 6 files changed +20
-18
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 28
5
- buildToolsVersion ' 28 .0.3'
4
+ compileSdkVersion 29
5
+ buildToolsVersion ' 29 .0.3'
6
6
7
7
defaultConfig {
8
8
applicationId " com.turingtechnologies.materialscrollbardemo"
9
9
minSdkVersion 14
10
- targetSdkVersion 28
11
- versionCode 6
12
- versionName " 6 .0"
10
+ targetSdkVersion 29
11
+ versionCode 7
12
+ versionName " 7 .0"
13
13
}
14
14
buildTypes {
15
15
release {
@@ -25,8 +25,8 @@ android {
25
25
26
26
dependencies {
27
27
implementation project(' :lib' )
28
- implementation " androidx.recyclerview:recyclerview:1.0.0 "
28
+ implementation ' androidx.recyclerview:recyclerview:1.1.0 '
29
29
implementation ' com.pnikosis:materialish-progress:1.7'
30
- implementation " com.google.android.material:material:1.0.0 "
31
- implementation " androidx.appcompat:appcompat:1.0.2 "
30
+ implementation ' com.google.android.material:material:1.1.0 '
31
+ implementation ' androidx.appcompat:appcompat:1.1.0 '
32
32
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public static void processApps(final AppCompatActivity activity) {
26
26
return ;
27
27
}
28
28
//noinspection WrongConstant
29
- pkgAppsList = activity .getPackageManager ().getInstalledApplications (PackageManager .GET_ACTIVITIES );
29
+ pkgAppsList = activity .getPackageManager ().getInstalledApplications (PackageManager .GET_META_DATA );
30
30
for (int i = 0 ; i < pkgAppsList .size (); i ++) {
31
31
if (activity .getPackageManager ().getLaunchIntentForPackage (pkgAppsList .get (i ).packageName ) == null || (!BuildConfig .DEBUG && pkgAppsList .get (i ).packageName .contains (AppData .class .getPackage ().getName ()))) {
32
32
pkgAppsList .remove (i );
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
9
9
}
10
10
dependencies {
11
11
classpath ' com.github.ben-manes:gradle-versions-plugin:0.15.0'
12
- classpath ' com.android.tools.build:gradle:3.2.1 '
12
+ classpath ' com.android.tools.build:gradle:4.0.0-beta05 '
13
13
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14
14
15
15
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ 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.6 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.3 -all.zip
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
// apply plugin: 'kotlin-android'
3
3
4
- def libVersion = ' 13.3.2 '
4
+ def libVersion = ' 13.3.3 '
5
5
6
6
android {
7
- compileSdkVersion 28
8
- buildToolsVersion ' 28 .0.3'
7
+ compileSdkVersion 29
8
+ buildToolsVersion ' 29 .0.3'
9
9
10
10
defaultConfig {
11
11
minSdkVersion 14
12
- targetSdkVersion 28
12
+ targetSdkVersion 29
13
13
versionName libVersion
14
14
}
15
15
compileOptions {
@@ -43,8 +43,9 @@ artifacts {
43
43
}
44
44
45
45
dependencies {
46
- implementation " androidx.recyclerview:recyclerview:1.0.0"
47
- implementation " com.google.android.material:material:1.0.0"
46
+ implementation ' androidx.recyclerview:recyclerview:1.1.0'
47
+ implementation ' com.google.android.material:material:1.1.0'
48
+ implementation ' androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
48
49
// compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
49
50
}
50
51
repositories {
Original file line number Diff line number Diff line change 1
1
POM_NAME =Material Scroll Bar
2
2
POM_ARTIFACT_ID =materialScrollBar
3
- POM_PACKAGING =aar
3
+ POM_PACKAGING =aar
4
+ android.useAndroidX =true
You can’t perform that action at this time.
0 commit comments