左晓为主开发手持机充值管理机
zuoxiao
2025-04-08 99b11059aedf616df4ed3b74300fa59417568bc3
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
apply plugin: 'com.android.library'
 
android {
    namespace 'com.kernal.passportreader.sdk'
    compileSdk 34
    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 29
        versionCode 1
        versionName "2.0.1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
 
    }
 
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
//   repositories {
//       flatDir{
//           dir 'libs'
//       }
//   }
}
 
dependencies {
 
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'androidx.appcompat:appcompat:1.1.0'
    api files('libs/idcard_sdk.jar')
    api files('libs/android_auth.jar')
    api files('libs/pki.jar')
    /*compileOnly files('libs/pki.jar')
        compileOnly files('libs/ksoap2-android-assembly-2.4-jar-with-dependencies.jar')
        compileOnly files('libs/bcprov-ext-jdk15-146.jar')
        compileOnly files('libs/android_auth.jar')*/
    //api(name:"app_sdk",ext:'aar')
 
}