562935844@qq.com
2022-05-13 a3f9e5ce8dce3d86a60a79b85ce44424a612c6fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//打包的
//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'
    }
}*/