144 lines
4.7 KiB
Groovy
144 lines
4.7 KiB
Groovy
plugins {
|
|
id "com.android.application"
|
|
id "kotlin-android"
|
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
|
id "dev.flutter.flutter-gradle-plugin"
|
|
}
|
|
|
|
// added ここから
|
|
def localProperties = new Properties()
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
localProperties.load(reader)
|
|
}
|
|
}
|
|
|
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
if (flutterVersionCode == null) {
|
|
flutterVersionCode = '1'
|
|
}
|
|
|
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
if (flutterVersionName == null) {
|
|
flutterVersionName = '1.0'
|
|
}
|
|
|
|
def keystoreProperties = new Properties()
|
|
def keystorePropertiesFile = rootProject.file('key.properties')
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
}
|
|
// added ここまで
|
|
|
|
android {
|
|
namespace = "com.dvox.gifunavi"
|
|
compileSdk 34
|
|
ndkVersion = '27.0.12077973'
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '1.8' //JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
// Added : Add this block to force all libraries to use the same Kotlin version
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
//force "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
force "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
//force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
force 'com.google.android.gms:play-services-location:21.0.1'
|
|
}
|
|
}
|
|
// added ここまで
|
|
|
|
defaultConfig {
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
applicationId = "com.dvox.gifunavi"
|
|
// You can update the following values to match your application needs.
|
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
|
minSdk = 21
|
|
targetSdk 34// 19 //flutter.minSdkVersion
|
|
versionCode = flutter.versionCode
|
|
versionName = flutter.versionName
|
|
multiDexEnabled true // Added
|
|
}
|
|
|
|
// added for release
|
|
signingConfigs {
|
|
if (keystoreProperties['storeFile'] != null) {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
// TODO: Add your own signing config for the release build.
|
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
|
signingConfig = signingConfigs.debug
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
}
|
|
}
|
|
|
|
lint {
|
|
baseline = file("lint-baseline.xml")
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingPermission'
|
|
}
|
|
|
|
task wrapper(type: Wrapper){
|
|
gradleVersion = '8.2.1'
|
|
}
|
|
|
|
task prepareKotlinBuildScriptModel {
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" // added
|
|
//implementation project(':flutter') // added - 2
|
|
implementation 'com.google.android.gms:play-services-location:21.0.1' //18.0.0' // このバージョンは最新のものにしてください
|
|
//implementation 'androidx.core:core-ktx:1.13.1' // added
|
|
implementation 'androidx.core:core-ktx:1.10.1' // added
|
|
implementation 'androidx.multidex:multidex:2.0.1' // added
|
|
implementation 'com.google.android.material:material:1.5.0'
|
|
|
|
// Update AndroidX libraries
|
|
// implementation "androidx.core:core-ktx:1.12.0"
|
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
implementation "androidx.fragment:fragment-ktx:1.7.0"
|
|
implementation "androidx.activity:activity-ktx:1.8.2"
|
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.7.0"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
|
|
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
|
|
}
|
|
|
|
// Force all Kotlin dependencies to use the same version
|
|
configurations.all {
|
|
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
|
|
if (details.requested.group == 'org.jetbrains.kotlin') {
|
|
details.useVersion kotlin_version
|
|
}
|
|
}
|
|
} |