Commit 34346382 authored by wind.wang's avatar wind.wang

1.0.3

parent 8f0df9c8
connection.project.dir=../../../../../android
connection.project.dir=
eclipse.preferences.version=1
......@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion "${rootProject.ext.buildToolsVersion}"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
......@@ -19,13 +19,13 @@ android {
}
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
jcenter()
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath "com.android.tools.build:gradle:3.5.0"
}
}
......@@ -39,8 +39,8 @@ allprojects {
dependencies {
compile 'com.android.support:appcompat-v7:23.1.0'
compile files('libs/AMap_Search_V4.0.0_20170111.jar')
compile files('libs/AMap_Location_V3.3.0_20170118.jar')
compile 'com.facebook.react:react-native:+'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation files('libs/AMap_Search_V4.0.0_20170111.jar')
implementation files('libs/AMap_Location_V3.3.0_20170118.jar')
implementation 'com.facebook.react:react-native:+'
}
\ No newline at end of file
connection.project.dir=../../../../../android
arguments=
auto.sync=false
build.scans.enabled=false
connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(5.4))
connection.project.dir=
eclipse.preferences.version=1
gradle.user.home=
java.home=
jvm.arguments=
offline.mode=false
override.workspace.settings=true
show.console.view=true
show.executions.view=true
......@@ -2,31 +2,29 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
jcenter()
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:3.5.0"
}
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion "${rootProject.ext.buildToolsVersion}"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
}
}
dependencies {
provided 'com.facebook.react:react-native:+'
compile 'com.amap.api:3dmap:6.6.0'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
compileOnly 'com.facebook.react:react-native:+'
implementation 'com.amap.api:3dmap:6.6.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
......@@ -10,7 +10,7 @@
"name": "@hisense/react-native-amap-sdk",
"license": "MIT",
"author": "Wind.Wang",
"version": "1.0.1",
"version": "1.0.3",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment