//打包的
|
//apply plugin: 'com.android.library'
|
//apply plugin:'com.kezong.fat-aar'
|
plugins {
|
id 'java-library'
|
}
|
|
/*android {
|
compileSdkVersion rootProject.compileSdkVersion
|
|
defaultConfig {
|
minSdkVersion rootProject.minSdkVersion
|
targetSdkVersion rootProject.targetSdkVersion
|
versionCode 2
|
versionName "1.0.15"
|
}
|
buildTypes {
|
debug {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
compileOptions {
|
sourceCompatibility 1.8
|
targetCompatibility 1.8
|
}
|
|
//gradlew assembleRelease
|
//gradlew makeJar
|
|
}*/
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
// embed project(path: ':hdl-common', configuration:'default')
|
// embed project(path: ':hdl-connect', configuration:'default')
|
// embed project(path: ':hdl-socket', configuration:'default')
|
|
implementation project(path: ':hdl-common')
|
implementation project(path: ':hdl-connect')
|
implementation project(path: ':hdl-socket')
|
}
|
|
//打包的
|
/*
|
buildscript {
|
|
repositories {
|
google()
|
jcenter()
|
maven {url "https://plugins.gradle.org/m2/"}
|
}
|
|
dependencies {
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
classpath 'com.kezong:fat-aar:1.2.16'
|
}
|
}*/
|