Open spurdow opened 9 years ago
+1
+1
+1
I've forked and made a gradle build for the command line tools, shouldn't be very difficult to make it work on Android Studio. It's on jsteinaker/aFileChooser in case you need it.
+1
+1
@jsteinaker Thanks, will have a look into it.
+1
+1
Here's gradle build file build.gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
lintOptions {
abortOnError false
}
defaultConfig {
minSdkVersion 7
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:23.1.1'
}
compile 'andhradroid.dev:aFilechooser:1.0.1'
Thanks, I'll give it a try.
@kashban It should work :) , I used it successfully.
@yduman I believe you :-). Unfortunately there was a change in the API between the library version I use and this one. And it does not seem to adhere mimetype filtering which I require. So I will probably ditch afilechooser alltogether and go for Android standard, since I upped my minSDK version to API 19.
gradle build for android studio?