Initial commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
import java.util.Properties
|
||||
import java.io.FileInputStream
|
||||
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
id("kotlin-android")
|
||||
id("dev.flutter.flutter-gradle-plugin")
|
||||
}
|
||||
|
||||
val keyPropsFile = rootProject.file("key.properties")
|
||||
val keyProps = Properties().apply {
|
||||
if (keyPropsFile.exists()) load(FileInputStream(keyPropsFile))
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "pt.ruifpb.openvinyl"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
ndkVersion = flutter.ndkVersion
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_17.toString()
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "pt.ruifpb.openvinyl"
|
||||
minSdk = flutter.minSdkVersion
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
create("release") {
|
||||
keyAlias = keyProps["keyAlias"] as String?
|
||||
keyPassword = keyProps["keyPassword"] as String?
|
||||
storeFile = if (keyProps["storeFile"] != null) file(keyProps["storeFile"] as String) else null
|
||||
storePassword = keyProps["storePassword"] as String?
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
||||
Reference in New Issue
Block a user