Skip to content
Open
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
19 changes: 10 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.1.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -19,9 +16,13 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
}

ext {
minSdkVersion = 18
compileSdkVersion = 28
targetSdkVersion = 28
buildToolsVersion = '28.0.2'
}
12 changes: 6 additions & 6 deletions example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion

defaultConfig {
applicationId "net.ypresto.androidtranscoder.example"
minSdkVersion 18
targetSdkVersion 24
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
versionCode 1
versionName "1.0"
}
Expand All @@ -20,6 +20,6 @@ android {
}

dependencies {
compile project(':lib')
compile 'com.android.support:support-core-utils:24.2.0'
implementation project(':lib')
implementation 'com.android.support:support-core-utils:27.1.1'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ 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.7-all.zip
14 changes: 8 additions & 6 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.2.4'
classpath 'com.novoda:bintray-release:0.8.1'
}
}

apply plugin: 'com.android.library'
apply plugin: 'bintray-release'

android {
compileSdkVersion 24
buildToolsVersion '25.0.2'
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion

defaultConfig {
minSdkVersion 18
targetSdkVersion 24
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
}

buildTypes {
Expand All @@ -30,9 +30,11 @@ android {
}

publish {
userOrg = 'net.ypresto'
groupId = 'net.ypresto.androidtranscoder'
artifactId = 'android-transcoder'
version = '0.3.0'
publishVersion = '0.3.0'
desc = 'Hardware accelerated transcoder for Android, written in pure Java.'
licences = ['Apache-2.0']
website = 'https://github.com/ypresto/android-transcoder'
autoPublish = false
Expand Down