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
30 changes: 14 additions & 16 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.android.tools.build:gradle:3.3.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -17,5 +18,6 @@ allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
20 changes: 8 additions & 12 deletions carouselview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@ apply plugin: 'com.android.library'
apply plugin: 'maven'
apply from: '../deploy.gradle'

group = 'com.gtomato.android.library'
archivesBaseName = 'carouselview'
version = '2.0.1'

android {
compileSdkVersion 21
buildToolsVersion '25.0.3'
compileSdkVersion 28
buildToolsVersion '29.0.0 rc1'

defaultConfig {
minSdkVersion 11
targetSdkVersion 21
minSdkVersion 22
targetSdkVersion 28
}
buildTypes {
release {
Expand All @@ -23,10 +19,10 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'
compile 'com.android.support:support-annotations:23.1.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:support-annotations:28.0.0'
}

uploadArchives {
Expand Down

This file was deleted.

Loading