Skip to content

Commit

Permalink
feat(gradle-3): rollback compile and add gradlew clean to circle
Browse files Browse the repository at this point in the history
  • Loading branch information
jgcmarins committed Jun 26, 2018
1 parent 32217f7 commit c4bece4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Expand Up @@ -52,5 +52,5 @@ dependencies {
def supportLibVersion = rootProject.hasProperty('supportLibVersion') ? rootProject.supportLibVersion : DEFAULT_SUPPORT_LIBRARY_VERSION

compileOnly 'com.facebook.react:react-native:+'
compile 'com.android.support:appcompat-v7:$supportLibVersion'
compile "com.android.support:appcompat-v7:$supportLibVersion"
}
2 changes: 1 addition & 1 deletion circle.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Run Checks
command: |
cd android
chmod +x ./gradlew && ./gradlew check
chmod +x ./gradlew clean && ./gradlew && ./gradlew check
- save_cache:
key: v1-npm
paths:
Expand Down

0 comments on commit c4bece4

Please sign in to comment.