group 'anjiplus.aj_flutter_appsp' version '1.0-SNAPSHOT' buildscript { repositories { google() jcenter() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' } } rootProject.allprojects { repositories { google() jcenter() // maven { // url "https://raw.githubusercontent.com/anji-plus/aj_android_appsp_aar/main" // } } } apply plugin: 'com.android.library' android { compileSdkVersion 28 defaultConfig { minSdkVersion 16 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } lintOptions { disable 'InvalidPackage' } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.aar']) api "androidx.appcompat:appcompat:1.0.0" api 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.google.code.gson:gson:2.8.0' // api 'anji.sdk.appsp:aar:0.0.2' }