Skip to content

Commit

Permalink
Updated to Support library 23.2.0, added support for vector resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Spatny committed Feb 29, 2016
1 parent 4be7aba commit 850bcb6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ android {
targetSdkVersion 22
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
vectorDrawables.useSupportLibrary = true

if (project.hasProperty('pockethub_github_client')) {
resValue "string", "github_client", pockethub_github_client
Expand Down Expand Up @@ -100,9 +101,9 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:support-v4:23.2.0'
compile 'com.android.support:design:23.2.0'

compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp:2.7.0'
Expand All @@ -123,7 +124,7 @@ dependencies {
compile ('com.google.inject.extensions:guice-assistedinject:3.0'){
exclude group: 'com.google.inject'
}
compile('com.github.afollestad.material-dialogs:core:0.8.5.3@aar') {
compile('com.github.afollestad.material-dialogs:core:0.8.5.6@aar') {
transitive = true
}
//Self compiled .aar version of wishlist
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/activity_file_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
android:visible="false"/>
<item
android:id="@+id/m_share"
android:icon="@drawable/abc_ic_menu_share_mtrl_alpha"
android:icon="@drawable/abc_ic_menu_share_material"
app:showAsAction="never"
android:title="@string/share"/>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/fragment_commit_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
android:title="@string/copy_hash" />
<item
android:id="@+id/m_share"
android:icon="@drawable/abc_ic_menu_share_mtrl_alpha"
android:icon="@drawable/abc_ic_menu_share_material"
app:showAsAction="never"
android:title="@string/share"/>
<item
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/fragment_gist_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
android:title="@string/star"/>
<item
android:id="@+id/m_share"
android:icon="@drawable/abc_ic_menu_share_mtrl_alpha"
android:icon="@drawable/abc_ic_menu_share_material"
app:showAsAction="never"
android:title="@string/share"/>
<item
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/fragment_issue_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
android:title="@string/close"/>
<item
android:id="@+id/m_share"
android:icon="@drawable/abc_ic_menu_share_mtrl_alpha"
android:icon="@drawable/abc_ic_menu_share_material"
app:showAsAction="never"
android:title="@string/share"/>
<item
Expand Down

0 comments on commit 850bcb6

Please sign in to comment.