| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- group 'com.izouma.ttdj_plugin'
- version '1.0-SNAPSHOT'
- buildscript {
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.1'
- }
- }
- rootProject.allprojects {
- repositories {
- google()
- jcenter()
- flatDir {
- dirs 'libs'
- }
- }
- }
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- defaultConfig {
- minSdkVersion 16
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- }
|