2023-12-07 01:36:00 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
2023-12-07 01:42:14 +00:00
|
|
|
id 'com.google.dagger.hilt.android'
|
2023-12-07 01:36:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'one.nem.lacerta'
|
2023-12-07 01:36:18 +00:00
|
|
|
compileSdk 34
|
2023-12-07 01:36:00 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "one.nem.lacerta"
|
|
|
|
minSdk 26
|
|
|
|
targetSdk 33
|
2023-12-19 02:50:32 +00:00
|
|
|
|
2023-12-20 01:16:07 +00:00
|
|
|
// ベータ, Internal, Release問わず毎回インクリメントする
|
|
|
|
// https://developer.android.com/studio/publish/versioning#versioningsettings
|
2023-12-20 01:45:45 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "0.1.0"
|
2023-12-07 01:36:00 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
2023-12-19 02:01:23 +00:00
|
|
|
debug { // 開発メンバー用
|
|
|
|
debuggable true
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
2023-12-19 02:05:16 +00:00
|
|
|
matchingFallbacks = ['release']
|
2023-12-19 02:01:23 +00:00
|
|
|
}
|
2023-12-19 02:44:11 +00:00
|
|
|
internal_release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
|
|
|
matchingFallbacks = ['release']
|
|
|
|
}
|
2023-12-19 02:01:23 +00:00
|
|
|
beta_release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
2023-12-19 02:05:16 +00:00
|
|
|
matchingFallbacks = ['release']
|
2023-12-19 02:01:23 +00:00
|
|
|
}
|
2023-12-07 01:36:00 +00:00
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-12-07 05:56:50 +00:00
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
implementation libs.com.google.android.material
|
|
|
|
implementation libs.androidx.constraintlayout
|
|
|
|
testImplementation libs.junit
|
|
|
|
androidTestImplementation libs.androidx.test.ext.junit
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
|
|
|
|
2023-12-07 01:42:55 +00:00
|
|
|
// Hilt (DI)
|
2023-12-07 05:56:50 +00:00
|
|
|
implementation libs.com.google.dagger.hilt.android
|
|
|
|
annotationProcessor libs.com.google.dagger.hilt.compiler
|
2023-12-07 01:42:55 +00:00
|
|
|
|
2023-12-07 05:48:48 +00:00
|
|
|
// Navigation
|
|
|
|
implementation libs.navigation.fragment
|
|
|
|
implementation libs.navigation.ui
|
|
|
|
implementation libs.navigation.dynamic.features.fragment
|
2023-12-07 05:27:21 +00:00
|
|
|
|
2024-01-19 06:16:20 +00:00
|
|
|
// Feature
|
|
|
|
implementation project(':feature:home')
|
|
|
|
implementation project(':feature:search')
|
|
|
|
implementation project(':feature:library')
|
|
|
|
implementation project(':feature:scan')
|
|
|
|
implementation project(':feature:debug') // デバッグメニュー
|
2024-01-20 06:07:45 +00:00
|
|
|
implementation project(':feature:setting') // 設定画面
|
2024-01-19 06:16:20 +00:00
|
|
|
|
|
|
|
implementation project(':data')
|
|
|
|
implementation project(':shared:ui')
|
2024-01-21 10:04:01 +00:00
|
|
|
|
2024-01-21 10:10:03 +00:00
|
|
|
implementation project(':model')
|
|
|
|
|
2024-01-21 10:04:01 +00:00
|
|
|
implementation project(':utils')
|
2024-01-22 18:08:42 +00:00
|
|
|
|
|
|
|
implementation project(':component:scan')
|
2023-12-07 01:36:00 +00:00
|
|
|
}
|