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 eclipse.preferences.version=1
...@@ -2,12 +2,12 @@ apply plugin: 'com.android.library' ...@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
android { android {
compileSdkVersion 23 compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion "23.0.2" buildToolsVersion "${rootProject.ext.buildToolsVersion}"
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion 23 targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
} }
...@@ -19,13 +19,13 @@ android { ...@@ -19,13 +19,13 @@ android {
} }
buildscript { buildscript {
ext.kotlin_version = '1.2.41'
repositories { repositories {
jcenter() maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.1.0' classpath "com.android.tools.build:gradle:3.5.0"
} }
} }
...@@ -39,8 +39,8 @@ allprojects { ...@@ -39,8 +39,8 @@ allprojects {
dependencies { dependencies {
compile 'com.android.support:appcompat-v7:23.1.0' implementation 'androidx.appcompat:appcompat:1.0.2'
compile files('libs/AMap_Search_V4.0.0_20170111.jar') implementation files('libs/AMap_Search_V4.0.0_20170111.jar')
compile files('libs/AMap_Location_V3.3.0_20170118.jar') implementation files('libs/AMap_Location_V3.3.0_20170118.jar')
compile 'com.facebook.react:react-native:+' 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 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' ...@@ -2,31 +2,29 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
buildscript { buildscript {
ext.kotlin_version = '1.2.41'
repositories { repositories {
jcenter() maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.2.3' classpath "com.android.tools.build:gradle:3.5.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }
android { android {
compileSdkVersion 23 compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion "23.0.1" buildToolsVersion "${rootProject.ext.buildToolsVersion}"
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion 22 targetSdkVersion rootProject.ext.targetSdkVersion
} }
} }
dependencies { dependencies {
provided 'com.facebook.react:react-native:+' compileOnly 'com.facebook.react:react-native:+'
compile 'com.amap.api:3dmap:6.6.0' implementation 'com.amap.api:3dmap:6.6.0'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
} }
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
"name": "@hisense/react-native-amap-sdk", "name": "@hisense/react-native-amap-sdk",
"license": "MIT", "license": "MIT",
"author": "Wind.Wang", "author": "Wind.Wang",
"version": "1.0.1", "version": "1.0.3",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "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