Skip to content

Commit

Permalink
Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
smedic committed Apr 24, 2018
1 parent fc483ce commit c58a976
Show file tree
Hide file tree
Showing 12 changed files with 539 additions and 571 deletions.
22 changes: 0 additions & 22 deletions .idea/compiler.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/encodings.xml

This file was deleted.

3 changes: 1 addition & 2 deletions .idea/gradle.xml

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

9 changes: 5 additions & 4 deletions .idea/misc.xml

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

49 changes: 25 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.smedic.tubtub"
minSdkVersion 16
targetSdkVersion 25
targetSdkVersion 27
versionCode 12
versionName "2.1"
}
Expand All @@ -18,7 +18,7 @@ android {
def file = output.outputFile
def appId = android.defaultConfig.applicationId
def fileName = appId + "-" + variant.buildType.name + "-" + defaultConfig.versionName + ".apk"
output.outputFile = new File(file.parent, fileName)
//output.outputFile = new File(file.parent, fileName)
}
}
}
Expand All @@ -32,7 +32,7 @@ android {
def file = output.outputFile
def appId = android.defaultConfig.applicationId
def fileName = appId + "-" + variant.buildType.name +".apk"
output.outputFile = new File(file.parent, fileName)
//output.outputFile = new File(file.parent, fileName)
}
}
}
Expand All @@ -43,23 +43,24 @@ android {
dependencies {
provided fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile(name: 'color_picker_library-release', ext: 'aar')
compile 'com.android.support:appcompat-v7'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.google.android.gms:play-services-auth:10.2.0'
compile files('libs/google-api-client-android-1.21.0.jar')
compile files('libs/google-http-client-android-1.21.0.jar')
compile files('libs/google-api-client-1.21.0.jar')
compile files('libs/google-http-client-1.21.0.jar')
compile files('libs/google-http-client-jackson2-1.21.0.jar')
compile files('libs/google-oauth-client-1.21.0.jar')
compile files('libs/jackson-core-2.1.3.jar')
compile files('libs/google-api-services-youtube-v3-rev160-1.21.0.jar')
compile files('libs/picasso-2.5.2.jar')
compile 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
compile 'pub.devrel:easypermissions:0.3.0'
compile 'com.facebook.network.connectionclass:connectionclass:1.0.1' //this lib include jsr501
compile 'com.android.support:cardview-v7:25.2.0'
implementation(name: 'color_picker_library-release', ext: 'aar')
implementation 'com.android.support:appcompat-v7'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.google.android.gms:play-services-auth:15.0.0'
implementation files('libs/google-api-client-android-1.21.0.jar')
implementation files('libs/google-http-client-android-1.21.0.jar')
implementation files('libs/google-api-client-1.21.0.jar')
implementation files('libs/google-http-client-1.21.0.jar')
implementation files('libs/google-http-client-jackson2-1.21.0.jar')
implementation files('libs/google-oauth-client-1.21.0.jar')
implementation files('libs/jackson-core-2.1.3.jar')
implementation files('libs/google-api-services-youtube-v3-rev160-1.21.0.jar')
implementation 'com.github.bumptech.glide:glide:4.7.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
implementation 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
implementation 'pub.devrel:easypermissions:1.2.0'
implementation 'com.facebook.network.connectionclass:connectionclass:1.0.1' //this lib include jsr501
implementation 'com.android.support:cardview-v7:27.1.1'
}
Binary file removed app/libs/picasso-2.5.2.jar
Binary file not shown.
Loading

0 comments on commit c58a976

Please sign in to comment.