77 lines
2.4 KiB
Dart
77 lines
2.4 KiB
Dart
def localProperties = new Properties()
|
||
def localPropertiesFile = rootProject.file('local.properties')
|
||
if (localPropertiesFile.exists()) {
|
||
localPropertiesFile.withReader('UTF-8') { reader ->
|
||
localProperties.load(reader)
|
||
}
|
||
}
|
||
|
||
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
||
if (flutterRoot == null) {
|
||
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
||
}
|
||
|
||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||
if (flutterVersionCode == null) {
|
||
flutterVersionCode = '1'
|
||
}
|
||
|
||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||
if (flutterVersionName == null) {
|
||
flutterVersionName = '1.0'
|
||
}
|
||
|
||
apply plugin: 'com.android.application'
|
||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
||
|
||
android {
|
||
compileSdkVersion 33
|
||
compileOptions {
|
||
sourceCompatibility JavaVersion.VERSION_1_8
|
||
targetCompatibility JavaVersion.VERSION_1_8
|
||
}
|
||
|
||
defaultConfig {
|
||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||
applicationId "com.finogeeks.finosprite"
|
||
minSdkVersion 21
|
||
targetSdkVersion 30
|
||
versionCode flutterVersionCode.toInteger()
|
||
versionName flutterVersionName
|
||
}
|
||
|
||
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
|
||
}
|
||
}
|
||
packagingOptions {
|
||
// libsdkcore.so、libyuvutil.so是被加固过的,不能被压缩,否则加载动态库时会报错
|
||
doNotStrip "*/x86/libsdkcore.so"
|
||
doNotStrip "*/x86_64/libsdkcore.so"
|
||
doNotStrip "*/armeabi/libsdkcore.so"
|
||
doNotStrip "*/armeabi-v7a/libsdkcore.so"
|
||
doNotStrip "*/arm64-v8a/libsdkcore.so"
|
||
|
||
doNotStrip "*/x86/libfin-yuvutil.so"
|
||
doNotStrip "*/x86_64/libfin-yuvutil.so"
|
||
doNotStrip "*/armeabi/libfin-yuvutil.so"
|
||
doNotStrip "*/armeabi-v7a/libfin-yuvutil.so"
|
||
doNotStrip "*/arm64-v8a/libfin-yuvutil.so"
|
||
|
||
exclude 'META-INF/beans.xml'
|
||
}
|
||
}
|
||
|
||
flutter {
|
||
source '../..'
|
||
}
|
||
|
||
dependencies {
|
||
def sdk_version = "2.41.3"
|
||
compileOnly "com.finogeeks.lib:finapplet:2.41.4-dev20230721v13"
|
||
implementation "com.finogeeks.mop:plugins:${sdk_version}"
|
||
}
|