-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from m-i-n-a-r/develop
Develop, v4.5.1
- Loading branch information
Showing
92 changed files
with
3,317 additions
and
748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/build | ||
build | ||
release | ||
debug |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
@file:Suppress("UnstableApiUsage") | ||
|
||
plugins { | ||
id("com.android.application") | ||
id("org.jetbrains.kotlin.android") | ||
id("com.google.devtools.ksp") | ||
id("androidx.navigation.safeargs.kotlin") | ||
} | ||
|
||
android { | ||
namespace = "com.minar.birday" | ||
compileSdk = 35 | ||
buildToolsVersion = "35.0.0" | ||
|
||
defaultConfig { | ||
applicationId = "com.minar.birday" | ||
targetSdk = 35 | ||
minSdk = 26 | ||
versionCode = 33 | ||
versionName = "4.5.1" | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = true | ||
isShrinkResources = true | ||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") | ||
} | ||
debug { | ||
applicationIdSuffix = ".debug" | ||
} | ||
} | ||
|
||
androidResources { | ||
generateLocaleConfig = true | ||
} | ||
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
} | ||
|
||
kotlin { | ||
jvmToolchain(17) | ||
} | ||
|
||
packaging { | ||
jniLibs { | ||
useLegacyPackaging = false | ||
} | ||
dex { | ||
useLegacyPackaging = false | ||
} | ||
resources { | ||
excludes += listOf("META-INF/*.version") | ||
} | ||
} | ||
|
||
dependenciesInfo { | ||
includeInApk = false | ||
includeInBundle = false | ||
} | ||
|
||
buildFeatures { | ||
viewBinding = true | ||
buildConfig = true | ||
} | ||
|
||
lint { | ||
disable += listOf("MissingTranslation", "MissingQuantity") | ||
} | ||
} | ||
|
||
configurations.configureEach { | ||
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk7") | ||
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8") | ||
} | ||
|
||
dependencies { | ||
|
||
// Default dependencies | ||
implementation("androidx.appcompat:appcompat:1.7.0") | ||
implementation("androidx.core:core-ktx:1.13.1") | ||
implementation("androidx.preference:preference-ktx:1.2.1") | ||
implementation("androidx.legacy:legacy-support-v4:1.0.0") | ||
implementation("androidx.activity:activity-ktx:1.9.1") | ||
implementation("androidx.fragment:fragment-ktx:1.8.2") | ||
|
||
// Transition | ||
implementation("androidx.transition:transition-ktx:1.5.1") | ||
|
||
// Constraint / motion layout | ||
implementation("androidx.constraintlayout:constraintlayout:2.1.4") | ||
|
||
// Splashscreen | ||
implementation("androidx.core:core-splashscreen:1.0.1") | ||
|
||
// Material Components | ||
implementation("com.google.android.material:material:1.13.0-alpha05") | ||
|
||
// WorkManager | ||
implementation("androidx.work:work-runtime-ktx:2.9.1") | ||
|
||
// Navigation component | ||
implementation("androidx.navigation:navigation-fragment-ktx:2.8.0-beta07") | ||
implementation("androidx.navigation:navigation-ui-ktx:2.8.0-beta07") | ||
|
||
// Lifecycle and ViewModel | ||
implementation("androidx.lifecycle:lifecycle-extensions:2.2.0") | ||
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4") | ||
implementation("androidx.recyclerview:recyclerview:1.3.2") | ||
|
||
// Room | ||
val roomVersion = "2.6.1" | ||
implementation("androidx.room:room-runtime:$roomVersion") | ||
ksp("androidx.room:room-compiler:$roomVersion") | ||
|
||
// Gson | ||
implementation("com.google.code.gson:gson:2.11.0") | ||
|
||
// App Intro | ||
implementation("com.github.AppIntro:AppIntro:6.3.1") | ||
|
||
// Facebook shimmer effect | ||
implementation("com.facebook.shimmer:shimmer:0.5.0") | ||
|
||
// Confetti effect | ||
implementation("nl.dionsegijn:konfetti:1.3.2") | ||
|
||
// TastiCalendar (my library :D) | ||
implementation("com.github.m-i-n-a-r:tasticalendar:1.3.6") | ||
|
||
// [Testing] Basic | ||
testImplementation("junit:junit:4.13.2") | ||
androidTestImplementation("androidx.test.ext:junit:1.2.1") | ||
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1") | ||
|
||
// [Testing] ICU | ||
testImplementation("com.ibm.icu:icu4j:75.1") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.