This repository has been archived on 2020-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
flutter-unity-view-widget/android/build.gradle

40 lines
777 B
Groovy
Raw Normal View History

2019-03-09 10:47:09 -05:00
group 'com.rexraphael.flutterunitywidget'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
2019-03-10 18:53:08 -04:00
implementation project(':UnityExport')
//Remember to add unity jar from unity export as a module dependency and add the module below
2019-03-26 17:06:17 -04:00
implementation project(':unity-classes')
2019-03-09 10:47:09 -05:00
}