flutter_bluetooth_basic/android/build.gradle

40 lines
688 B
Groovy

group 'com.tablemi.flutter_bluetooth_basic'
version '1.0'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
namespace 'com.tablemi.flutter_bluetooth_basic'
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation files('libs/gprintersdkv2.jar')
}