ソースを参照

1.优化依赖

tags/0.0.19
huaxuan 2年前
コミット
c85e86cd47
19個のファイルの変更24行の追加28行の削除
  1. +4
    -17
      android/build.gradle
  2. +1
    -1
      example/.flutter-plugins-dependencies
  3. +18
    -3
      example/android/app/build.gradle
  4. バイナリ
     
  5. バイナリ
     
  6. バイナリ
     
  7. バイナリ
     
  8. バイナリ
     
  9. バイナリ
     
  10. バイナリ
     
  11. バイナリ
     
  12. バイナリ
     
  13. バイナリ
     
  14. バイナリ
     
  15. バイナリ
     
  16. バイナリ
     
  17. バイナリ
     
  18. バイナリ
     
  19. +1
    -7
      example/android/build.gradle

+ 4
- 17
android/build.gradle ファイルの表示

@@ -9,6 +9,9 @@ buildscript {
flatDir {
dirs 'libs'
}
flatDir {
dirs 'libs', '../../../../library_module/libs'
}
}

dependencies {
@@ -21,9 +24,6 @@ rootProject.allprojects {
google()
jcenter()
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
flatDir {
dirs 'libs'
}
}
}

@@ -101,20 +101,7 @@ dependencies{
// implementation 'com.taobao.android:sgmiddletieraar3:5.0.0.9-v5@aar'


compileOnly(name: 'alibcad-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibcapplink-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibclogin-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibcnbtrade-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibcprotocol-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibctradecommon-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibctriver-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibctriver_live-5.0.0.13', ext: 'aar')
compileOnly(name: 'alibcwebview-5.0.0.13', ext: 'aar')

compileOnly(name: 'avmpaar3-5.0.0.9-v5', ext: 'aar')
compileOnly(name: 'securitybodyaar3-5.0.0.9-v5', ext: 'aar')
compileOnly(name: 'securityguardaar3-5.0.0.9-v5', ext: 'aar')
compileOnly(name: 'sgmiddletieraar3-5.0.0.9-v5', ext: 'aar')
compileOnly fileTree(include: ['*.jar','*.aar'], dir: 'libs')
// implementation(name: 'cardview-1.0.0', ext: 'aar')

// implementation(name: 'MiddleTierSDK-external-release-5.5.24-preInstall', ext: 'aar')


+ 1
- 1
example/.flutter-plugins-dependencies ファイルの表示

@@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_alibc","path":"/Users/fnuo123/Documents/fnuo_project/zhiying_flutter_alibc/","dependencies":[]}],"android":[{"name":"flutter_alibc","path":"/Users/fnuo123/Documents/fnuo_project/zhiying_flutter_alibc/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"flutter_alibc","dependencies":[]}],"date_created":"2022-03-09 19:46:38.209467","version":"1.24.0-3.0.pre"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_alibc","path":"/Users/fnuo123/Documents/fnuo_project/zhiying_flutter_alibc/","dependencies":[]}],"android":[{"name":"flutter_alibc","path":"/Users/fnuo123/Documents/fnuo_project/zhiying_flutter_alibc/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"flutter_alibc","dependencies":[]}],"date_created":"2022-03-09 22:33:40.492436","version":"1.24.0-3.0.pre"}

+ 18
- 3
example/android/app/build.gradle ファイルの表示

@@ -25,7 +25,7 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 28
compileSdkVersion 29

lintOptions {
disable 'InvalidPackage'
@@ -34,8 +34,8 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "wxwx.com.flutter_alibc_example"
minSdkVersion 16
targetSdkVersion 28
minSdkVersion 21
targetSdkVersion 29
multiDexEnabled true
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
@@ -78,4 +78,19 @@ dependencies {
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'

implementation(name: 'alibcad-5.0.0.13', ext: 'aar')
implementation(name: 'alibcapplink-5.0.0.13', ext: 'aar')
implementation(name: 'alibclogin-5.0.0.13', ext: 'aar')
implementation(name: 'alibcnbtrade-5.0.0.13', ext: 'aar')
implementation(name: 'alibcprotocol-5.0.0.13', ext: 'aar')
implementation(name: 'alibctradecommon-5.0.0.13', ext: 'aar')
implementation(name: 'alibctriver-5.0.0.13', ext: 'aar')
implementation(name: 'alibctriver_live-5.0.0.13', ext: 'aar')
implementation(name: 'alibcwebview-5.0.0.13', ext: 'aar')

implementation(name: 'avmpaar3-5.0.0.9-v5', ext: 'aar')
implementation(name: 'securitybodyaar3-5.0.0.9-v5', ext: 'aar')
implementation(name: 'securityguardaar3-5.0.0.9-v5', ext: 'aar')
implementation(name: 'sgmiddletieraar3-5.0.0.9-v5', ext: 'aar')
}

バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


バイナリ
ファイルの表示


+ 1
- 7
example/android/build.gradle ファイルの表示

@@ -1,11 +1,6 @@
buildscript {
repositories {
google()
jcenter()
maven {
url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
}

}

dependencies {
@@ -16,9 +11,8 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
flatDir {
dirs '../../../android/libs'
dirs 'libs'
}
}
}


読み込み中…
キャンセル
保存