Skip to content

Commit

Permalink
Update Bintray plugin.
Browse files Browse the repository at this point in the history
* SDK version 0.10.0
* Update README.md
* Update sample app
  • Loading branch information
marcouberti committed Jan 10, 2019
1 parent 394e372 commit 180817b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Neato-SDK/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(":neato-sdk-android")
//compile 'com.neatorobotics.sdk.android:neato-sdk-android:0.8.1@aar'
//implementation 'com.neatorobotics.sdk.android:neato-sdk-android:0.10.0@aar'
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
Expand Down
2 changes: 1 addition & 1 deletion Neato-SDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}
Expand Down
19 changes: 13 additions & 6 deletions Neato-SDK/neato-sdk-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
plugins {
id "com.android.library"
id "com.github.dcendents.android-maven"
id "com.jfrog.bintray"
}

android {
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 9
minSdkVersion 14
targetSdkVersion 28
versionCode 3
versionName "0.10.0"
Expand All @@ -28,6 +30,11 @@ android {
unitTests.returnDefaultValues = true
}

compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}

/*
//Enable use R resources from local unit tests
sourceSets {
Expand All @@ -42,7 +49,7 @@ dependencies {
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.json:json:20141113'
implementation 'com.android.support:support-annotations:28.0.0'
//compile 'com.android.support:appcompat-v7:23.2.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
}

//BINTRAY - JCENTER
Expand Down Expand Up @@ -124,7 +131,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
}
artifacts {
archives javadocJar
//archives javadocJar
archives sourcesJar
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To boost your development, you can also check the *sample application*.
If you are using Gradle, add this dependency to your app build.gradle file:

``` groovy
compile 'com.neatorobotics.sdk.android:neato-sdk-android:0.8.1@aar'
compile 'com.neatorobotics.sdk.android:neato-sdk-android:0.10.0@aar'
```

and this repo reference to your project .gradle file:
Expand Down

0 comments on commit 180817b

Please sign in to comment.