You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
705 B
40 lines
705 B
group 'com.umeng.umeng_common_sdk' |
|
version '1.0' |
|
|
|
buildscript { |
|
repositories { |
|
google() |
|
jcenter() |
|
maven { url 'https://repo1.maven.org/maven2/'} |
|
} |
|
|
|
dependencies { |
|
classpath 'com.android.tools.build:gradle:3.5.0' |
|
} |
|
} |
|
|
|
rootProject.allprojects { |
|
repositories { |
|
google() |
|
jcenter() |
|
maven { url 'https://repo1.maven.org/maven2/'} |
|
} |
|
} |
|
|
|
apply plugin: 'com.android.library' |
|
|
|
android { |
|
compileSdkVersion 29 |
|
|
|
defaultConfig { |
|
minSdkVersion 16 |
|
} |
|
lintOptions { |
|
disable 'InvalidPackage' |
|
} |
|
} |
|
|
|
dependencies { |
|
api 'com.umeng.umsdk:common:9.5.6'// 必选 |
|
api 'com.umeng.umsdk:asms:1.6.3'// 必选 |
|
} |