2023-03-26 20:40:07 +09:00
|
|
|
plugins {
|
|
|
|
|
id 'com.android.application'
|
|
|
|
|
id 'org.jetbrains.kotlin.android'
|
|
|
|
|
id 'io.realm.kotlin'
|
2024-07-31 20:38:44 +09:00
|
|
|
// id 'kotlin-android-extensions'
|
2023-03-26 20:40:07 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace 'com.mime.dualscreenview'
|
2024-08-22 20:38:56 +09:00
|
|
|
compileSdk 34
|
2023-03-26 20:40:07 +09:00
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "com.mime.dualscreenview"
|
|
|
|
|
minSdk 24
|
2024-08-22 20:38:56 +09:00
|
|
|
targetSdk 34
|
2023-03-26 20:40:07 +09:00
|
|
|
versionCode 1
|
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
2024-08-25 14:46:14 +09:00
|
|
|
signingConfigs {
|
|
|
|
|
|
|
|
|
|
debug {
|
|
|
|
|
storeFile = file("./bs_debug.keystore")
|
|
|
|
|
storePassword = "android"
|
|
|
|
|
keyAlias = "androiddebugkey"
|
|
|
|
|
keyPassword = "android"
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-26 20:40:07 +09:00
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
packagingOptions {
|
|
|
|
|
exclude 'resources.arsc'
|
|
|
|
|
exclude 'AndroidManifest.xml'
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
}
|
2024-08-02 16:30:05 +09:00
|
|
|
buildFeatures {
|
|
|
|
|
dataBinding true
|
|
|
|
|
}
|
2023-03-26 20:40:07 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
2024-08-22 20:38:56 +09:00
|
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
|
|
|
implementation 'androidx.collection:collection-ktx:1.4.3'
|
2023-03-26 20:40:07 +09:00
|
|
|
|
2024-08-22 20:38:56 +09:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
|
2023-03-26 20:40:07 +09:00
|
|
|
|
2024-08-22 20:38:56 +09:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
2023-03-26 20:40:07 +09:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
|
|
2024-08-22 20:38:56 +09:00
|
|
|
implementation 'com.google.android.material:material:1.12.0'
|
2023-03-26 20:40:07 +09:00
|
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
|
|
2024-08-01 18:04:10 +09:00
|
|
|
// implementation files('libs/DualScreen.jar')
|
2024-09-07 17:55:28 +09:00
|
|
|
implementation ("org.jsoup:jsoup:1.18.1")
|
2024-08-25 14:46:14 +09:00
|
|
|
implementation 'io.realm.kotlin:library-base:2.0.0'
|
2023-03-26 20:40:07 +09:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-08-22 20:38:56 +09:00
|
|
|
// testImplementation 'junit:junit:4.13.2'
|
2023-03-26 20:40:07 +09:00
|
|
|
|
|
|
|
|
}
|