mirror of
https://github.com/dzeiocom/charts.git
synced 2025-07-30 00:39:53 +00:00
feat: Make sample more customizable (#43)
This commit is contained in:
@ -1,14 +1,23 @@
|
||||
plugins {
|
||||
// Android Application?
|
||||
id("com.android.application")
|
||||
|
||||
// Support for kotlin in Android
|
||||
kotlin("android")
|
||||
|
||||
// Safe Navigation
|
||||
id("androidx.navigation.safeargs")
|
||||
|
||||
// keep at bottom
|
||||
kotlin("kapt")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.dzeio.chartstest"
|
||||
namespace = "com.dzeio.chartsapp"
|
||||
compileSdk = 33
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "com.dzeio.chartstest"
|
||||
applicationId = "com.dzeio.chartsapp"
|
||||
minSdk = 21
|
||||
targetSdk = 33
|
||||
versionCode = 1
|
||||
@ -31,19 +40,21 @@ android {
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
}
|
||||
|
||||
|
||||
buildFeatures {
|
||||
viewBinding = true
|
||||
dataBinding = true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation(project(":library"))
|
||||
|
||||
|
||||
// Material Design
|
||||
implementation("com.google.android.material:material:1.7.0")
|
||||
implementation("com.google.android.material:material:1.8.0")
|
||||
|
||||
// Navigation because I don't want to maintain basic transactions and shit
|
||||
implementation("androidx.navigation:navigation-fragment-ktx:2.5.3")
|
||||
}
|
||||
implementation("androidx.navigation:navigation-ui-ktx:2.5.3")
|
||||
}
|
||||
|
Reference in New Issue
Block a user