Skip to content

Commit

Permalink
Add sample icon, target API 24, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pluscubed committed Jul 1, 2016
1 parent 9c163b9 commit 3e2deed
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 22 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'

Expand Down
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-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-all.zip
16 changes: 8 additions & 8 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ apply plugin: 'com.github.dcendents.android-maven'
group = 'com.plusCubed'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion 24
buildToolsVersion "24.0.0"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 4
versionName "0.3.0"
targetSdkVersion 24
versionCode 5
versionName "0.3.2"
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:recyclerview-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
}

// build a jar with source files
Expand Down
20 changes: 10 additions & 10 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion 24
buildToolsVersion "24.0.0"

defaultConfig {
applicationId "com.pluscubed.recyclerfastscrollsample"
minSdkVersion 14
targetSdkVersion 23
versionCode 4
versionName "0.3.0.0"
targetSdkVersion 24
versionCode 1
versionName "0.3.2.0"
}

if (project.hasProperty("RELEASE_STORE_FILE")) {
Expand Down Expand Up @@ -44,10 +44,10 @@ repositories {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.github.afollestad.material-dialogs:core:0.8.5.8'
compile 'com.github.afollestad.material-dialogs:commons:0.8.5.8'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'com.afollestad.material-dialogs:core:0.8.6.1'
compile 'com.afollestad.material-dialogs:commons:0.8.6.1'
compile project(':library')
//compile 'com.pluscubed:recycler-fast-scroll:0.2.1'
//compile 'com.pluscubed:recycler-fast-scroll:0.3.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ protected void onCreate(Bundle savedInstanceState) {

mRecyclerFastScroller = (RecyclerFastScroller) findViewById(R.id.fast_scroller);
mRecyclerFastScroller.attachRecyclerView(view);

setTitle(R.string.title);
}

@Override
Expand Down
Binary file modified sample/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sample/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sample/src/main/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sample/src/main/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions sample/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<resources>
<string name="app_name">RecyclerFastScroll Sample</string>
<string name="app_name">RFS Sample</string>
<string name="title">RecyclerFastScroll Sample</string>

<string name="coordinator_layout">AppBarLayout Demo</string>

Expand All @@ -17,7 +18,7 @@
<string name="item_pressed_snackbar">You\'re at %s</string>
<string name="about">About</string>

<string name="about_dialog_title">Sample v%s</string>
<string name="about_dialog_title">RFS Sample v%s</string>
<string name="dismiss">Dismiss</string>

<string name="about_body"><![CDATA[
Expand Down

0 comments on commit 3e2deed

Please sign in to comment.