Skip to content

Commit 1652c28

Browse files
Updated dependencies
1 parent 91ad72a commit 1652c28

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Android Library to select files/directories from Device Storage
55

66
## And Don't Forget To Follow Me On Instagram
77

8-
<p align="center">Follow me on instagram to stay up-to-date https://instagram.com/akshay_sunil_masram
8+
<p align="center">Follow me on instagram to stay up-to-date https://instagram.com/a.masram444
99

1010
## Contributors
1111

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.5.3'
9+
classpath 'com.android.tools.build:gradle:7.1.2'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1111

1212
// NOTE: Do not place your application dependencies here; they belong

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-7.3.3-bin.zip

library/build.gradle

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
apply plugin: 'com.android.library'
22

3-
apply plugin: 'com.github.dcendents.android-maven'
3+
//apply plugin: 'com.github.dcendents.android-maven'
44
group='com.github.TutorialsAndroid'
55

66
android {
7-
compileSdkVersion 29
7+
compileSdkVersion 31
88

99
defaultConfig {
1010
minSdkVersion 19
11-
targetSdkVersion 29
12-
versionCode 6
13-
versionName "6.0.19"
11+
targetSdkVersion 31
1412
}
1513
buildTypes {
1614
release {

library/src/main/java/com/developer/filepicker/model/DialogConfigs.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public abstract class DialogConfigs {
1313

1414
/* PARENT_DIRECTORY*/
1515
private static final String DIRECTORY_SEPARATOR = "/";
16-
private static final String STORAGE_DIR = "mnt";
16+
private static final String STORAGE_DIR = "sdcard";
1717

1818
/* DEFAULT_DIR is the default mount point of the SDCARD. It is the default
1919
* mount point.

sample/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 29
4+
compileSdkVersion 31
55

66
defaultConfig {
77
applicationId "com.developer.filepicker.file"
88
minSdkVersion 19
9-
targetSdkVersion 29
10-
versionCode 6
11-
versionName "6.0.19"
9+
targetSdkVersion 31
10+
versionCode 7
11+
versionName "8.0.20"
1212
}
1313
buildTypes {
1414
release {
@@ -25,6 +25,6 @@ dependencies {
2525
implementation project(':library')
2626

2727
//AndroidX Libraries
28-
implementation 'androidx.appcompat:appcompat:1.1.0'
29-
implementation 'androidx.recyclerview:recyclerview:1.1.0'
28+
implementation 'androidx.appcompat:appcompat:1.4.1'
29+
implementation 'androidx.recyclerview:recyclerview:1.2.1'
3030
}

sample/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
android:requestLegacyExternalStorage="true"
1616
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
1717

18-
<activity android:name="com.developer.filepicker.file.MainActivity">
18+
<activity android:name="com.developer.filepicker.file.MainActivity"
19+
android:exported="true">
1920
<intent-filter>
2021
<action android:name="android.intent.action.MAIN" />
2122
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)