Open-source alternative Instagram client on Android. More maintainers needed!
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
apply plugin: 'com.android.application' apply plugin: "androidx.navigation.safeargs"
android { compileSdkVersion 29
defaultConfig { applicationId 'me.austinhuang.instagrabber'
minSdkVersion 16 targetSdkVersion 29
versionCode 46 versionName '18.0'
multiDexEnabled true
vectorDrawables.useSupportLibrary = true vectorDrawables.generatedDensities = [] }
compileOptions { targetCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8 }
buildFeatures { viewBinding true }
aaptOptions { additionalParameters '--no-version-vectors' }
buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } }
dependencies { implementation('androidx.appcompat:appcompat:1.3.0-alpha01@aar') { transitive true } implementation "androidx.recyclerview:recyclerview:1.1.0" implementation('com.google.android.material:material:1.3.0-alpha01@aar') { transitive true } implementation('androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01') { transitive true }
def nav_version = "2.3.0" implementation "androidx.navigation:navigation-fragment:$nav_version" implementation "androidx.navigation:navigation-ui:$nav_version"
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
implementation('org.jsoup:jsoup:1.13.1') { transitive true } implementation('com.github.bumptech.glide:glide:4.11.0') { transitive true } implementation('com.github.chrisbanes:PhotoView:v2.0.0@aar') { transitive true } implementation('com.google.android.exoplayer:exoplayer:2.11.1@aar') { transitive true } }
|