Skip to content

Compile with 27, Android Gradle plugin 3.0.0 #760

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ android:
components:
- tools
- platform-tools
- build-tools-26.0.1
- android-26
- doc-26
- build-tools-27.0.0
- android-27
- doc-27

before_install:
- pip install --user codecov
Expand Down
18 changes: 9 additions & 9 deletions Parse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ android {
}

ext {
okhttpVersion = '3.8.1'
okhttpVersion = '3.9.0'
}

dependencies {
compile "com.android.support:support-annotations:$supportLibVersion"
compile 'com.parse.bolts:bolts-tasks:1.4.0'
compile "com.squareup.okhttp3:okhttp:$okhttpVersion"

testCompile 'org.robolectric:robolectric:3.3.2'
testCompile 'org.skyscreamer:jsonassert:1.5.0'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile "com.squareup.okhttp3:mockwebserver:$okhttpVersion"
api "com.android.support:support-annotations:$supportLibVersion"
api 'com.parse.bolts:bolts-tasks:1.4.0'
api "com.squareup.okhttp3:okhttp:$okhttpVersion"

testImplementation 'org.robolectric:robolectric:3.3.2'
testImplementation 'org.skyscreamer:jsonassert:1.5.0'
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation "com.squareup.okhttp3:mockwebserver:$okhttpVersion"
}

android.libraryVariants.all { variant ->
Expand Down
26 changes: 0 additions & 26 deletions ParseStarterProject/build.gradle

This file was deleted.

18 changes: 0 additions & 18 deletions ParseStarterProject/proguard-rules.pro

This file was deleted.

40 changes: 0 additions & 40 deletions ParseStarterProject/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

24 changes: 0 additions & 24 deletions ParseStarterProject/src/main/res/layout/activity_main.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 0 additions & 14 deletions ParseStarterProject/src/main/res/values-w820dp/dimens.xml

This file was deleted.

13 changes: 0 additions & 13 deletions ParseStarterProject/src/main/res/values/dimens.xml

This file was deleted.

18 changes: 0 additions & 18 deletions ParseStarterProject/src/main/res/values/strings.xml

This file was deleted.

16 changes: 0 additions & 16 deletions ParseStarterProject/src/main/res/values/styles.xml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For more information about Parse and its features, see [the website][parseplatfo

```groovy
dependencies {
compile 'com.parse:parse-android:1.16.4-SNAPSHOT'
implementation 'com.parse:parse-android:1.16.3'
}
```

Expand Down
13 changes: 6 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.0.0'
}
}

plugins {
id "com.jfrog.artifactory" version "4.4.18"
id "com.jfrog.bintray" version "1.7.3"
id 'com.github.ben-manes.versions' version '0.15.0'
id 'com.github.ben-manes.versions' version '0.17.0'
}

allprojects {
Expand All @@ -23,11 +22,11 @@ allprojects {
}

ext {
compileSdkVersion = 26
buildToolsVersion = "26.0.1"
compileSdkVersion = 27
buildToolsVersion = "27.0.0"

supportLibVersion = '26.0.1'
supportLibVersion = '27.0.1'

minSdkVersion = 14
targetSdkVersion = 26
targetSdkVersion = 27
}
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include ':Parse'
include ':ParseStarterProject'