-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
- Updated the Gradle build files from Groovy to Kotlin DSL. - Replaced old dependency and repository configurations with Kotlin-compatible syntax. - Ensured compatibility with the latest Gradle version and project setup.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## [1.0.0] - 2024.12.9 | ||
|
||
- Updated the Gradle build files from Groovy to Kotlin DSL. | ||
- Replaced old dependency and repository configurations with Kotlin-compatible syntax. | ||
- Ensured compatibility with the latest Gradle version and project setup. |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
plugins { | ||
alias(libs.plugins.android.application) | ||
alias(libs.plugins.kotlin.android) | ||
} | ||
|
||
android { | ||
namespace = "com.banrossyn.ininsta.story.downloader" | ||
compileSdk = 35 | ||
|
||
defaultConfig { | ||
applicationId = "com.banrossyn.ininsta.story.downloader" | ||
minSdk = 24 | ||
targetSdk = 35 | ||
versionCode = 1 | ||
versionName = "1.0.0" | ||
setProperty("archivesBaseName", "InInsta") | ||
vectorDrawables.useSupportLibrary = true | ||
renderscriptSupportModeEnabled= true | ||
multiDexEnabled= true | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android-optimize.txt"), | ||
"proguard-rules.pro" | ||
) | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_11 | ||
targetCompatibility = JavaVersion.VERSION_11 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "11" | ||
} | ||
|
||
buildFeatures { | ||
viewBinding= true | ||
buildConfig= true | ||
} | ||
lint { | ||
checkReleaseBuilds =false | ||
abortOnError =false | ||
} | ||
|
||
} | ||
|
||
dependencies { | ||
|
||
implementation(libs.androidx.core.ktx) | ||
implementation(libs.androidx.appcompat) | ||
implementation(libs.material) | ||
implementation(libs.androidx.activity) | ||
implementation(libs.androidx.constraintlayout) | ||
testImplementation(libs.junit) | ||
androidTestImplementation(libs.androidx.junit) | ||
androidTestImplementation(libs.androidx.espresso.core) | ||
|
||
|
||
implementation("androidx.legacy:legacy-support-v4:1.0.0") | ||
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar")))) | ||
|
||
implementation("com.squareup.retrofit2:adapter-rxjava2:2.7.1") | ||
implementation("com.squareup.retrofit2:converter-gson:2.7.1") | ||
implementation("com.squareup.retrofit2:retrofit:2.7.1") | ||
implementation("com.squareup.okhttp3:okhttp:4.3.1") | ||
implementation("com.squareup.okhttp3:logging-interceptor:4.3.1") | ||
|
||
implementation("io.reactivex.rxjava2:rxandroid:2.1.1") | ||
implementation("io.reactivex.rxjava2:rxjava:2.2.19") | ||
|
||
implementation("com.github.bumptech.glide:glide:4.16.0") | ||
|
||
implementation("de.hdodenhof:circleimageview:3.1.0") | ||
implementation(project(":bubblenavigation")) | ||
|
||
implementation("com.airbnb.android:lottie:4.2.2") | ||
} |