The latest version is 1.1.8 (as of 05/18/18) and needs to be published and marketed. The library should be allowed to work in v4 of Android (Donut 1.6 - September 15, 2009 - 4).
The current library config is as follows:
android {
compileSdkVersion 24
useLibrary 'org.apache.http.legacy'
defaultConfig {
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName libraryVersion
...
}
...
}
The new config should be based upon API Level 8 (due to espresso-core dependency):
android {
compileSdkVersion 8
defaultConfig {
minSdkVersion 8
targetSdkVersion 8
versionCode 1
versionName libraryVersion
...
}
...
}
Possible Places to distribute dependency (compile 'us.the.mac:AndroidJniHelpers:1.1.8'):
- Reddit - https://reddit.com/r/android
- Hacker News - https://news.ycombinator.com
- Official Android Google+ - https://plus.google.com/communities/105153134372062985968
The latest version is 1.1.8 (as of 05/18/18) and needs to be published and marketed. The library should be allowed to work in v4 of Android (Donut 1.6 - September 15, 2009 - 4).
The current library config is as follows:
android { compileSdkVersion 24 useLibrary 'org.apache.http.legacy' defaultConfig { minSdkVersion 19 targetSdkVersion 24 versionCode 1 versionName libraryVersion ... } ... }The new config should be based upon API Level 8 (due to espresso-core dependency):
android { compileSdkVersion 8 defaultConfig { minSdkVersion 8 targetSdkVersion 8 versionCode 1 versionName libraryVersion ... } ... }Possible Places to distribute dependency (
compile 'us.the.mac:AndroidJniHelpers:1.1.8'):