mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
68 lines
No EOL
1.7 KiB
Text
68 lines
No EOL
1.7 KiB
Text
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("kotlin-parcelize")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
google()
|
|
}
|
|
android {
|
|
namespace = "app.revanced.manager.compose"
|
|
compileSdk = 33
|
|
buildToolsVersion = "33.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId = "app.revanced.manager.compose"
|
|
minSdk = 26
|
|
targetSdk = 33
|
|
versionCode = 1
|
|
versionName = "0.0.1"
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
|
|
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.compose = true
|
|
|
|
composeOptions.kotlinCompilerExtensionVersion = "1.3.2"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// AndroidX Core
|
|
implementation("androidx.core:core-ktx:1.9.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
|
|
implementation("androidx.core:core-splashscreen:1.0.0")
|
|
implementation("androidx.activity:activity-compose:1.6.1")
|
|
|
|
// Compose
|
|
val composeVersion = "1.3.3"
|
|
implementation("androidx.compose.ui:ui:$composeVersion")
|
|
implementation("androidx.compose.ui:ui-tooling-preview:$composeVersion")
|
|
|
|
// Material 3
|
|
implementation("androidx.compose.material3:material3:1.0.1")
|
|
|
|
// Koin
|
|
implementation("io.insert-koin:koin-android:3.3.2")
|
|
implementation("io.insert-koin:koin-androidx-compose:3.4.1")
|
|
|
|
// Compose Navigation
|
|
implementation("dev.olshevski.navigation:reimagined:1.3.1")
|
|
} |