Skip to content

Commit

Permalink
Updated Gradle, plugin and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen Mols committed Nov 21, 2017
1 parent 4bbe685 commit 9253782
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
}
}
Expand All @@ -29,5 +30,6 @@ allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
}
}
14 changes: 7 additions & 7 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23

This comment has been minimized.

Copy link
@Rajatchandaliya987
buildToolsVersion '25.0.0'
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
applicationId "com.jmolsmobile.landscapevideocapture_sample"
minSdkVersion 10
targetSdkVersion 22
minSdkVersion 14
targetSdkVersion 26
versionCode 17
versionName "1.3.0"
}
Expand All @@ -36,8 +36,8 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.3.0'
// compile project(':library')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation project(':library')

compile 'com.github.jeroenmols:LandscapeVideoCamera:1.3.0'
// implementation 'com.github.jeroenmols:LandscapeVideoCamera:1.3.0'
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Jun 02 12:34:18 CEST 2017
#Tue Nov 21 12:51:52 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
16 changes: 8 additions & 8 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.kt3k.coveralls'

android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
minSdkVersion 10
targetSdkVersion 22
minSdkVersion 14
targetSdkVersion 26
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand All @@ -35,10 +35,10 @@ android {
}

dependencies {
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'org.mockito:mockito-android:2.6.3'
androidTestCompile 'org.assertj:assertj-core:1.7.1'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test:rules:1.0.1'
androidTestImplementation 'org.mockito:mockito-android:2.6.3'
androidTestImplementation 'org.assertj:assertj-core:1.7.1'
}

coveralls {
Expand Down

0 comments on commit 9253782

Please sign in to comment.