Skip to content
This repository has been archived by the owner on Jan 22, 2023. It is now read-only.

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker24 committed Mar 4, 2020
1 parent e31ec0f commit 0b208ef
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ dependencies {

wearApp project(':wear')

implementation "androidx.appcompat:appcompat:${versions.androidX}"
implementation "androidx.recyclerview:recyclerview:${versions.androidX}"
implementation "androidx.appcompat:appcompat:1.1.0"
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "androidx.emoji:emoji:${versions.androidX}"
implementation "com.google.android.material:material:${versions.androidX}"
implementation "androidx.browser:browser:${versions.androidX}"
implementation "androidx.preference:preference:${versions.androidX}"
implementation "com.google.android.material:material:1.1.0"
implementation "androidx.browser:browser:1.2.0"
implementation "androidx.preference:preference:1.1.0"
implementation "androidx.legacy:legacy-preference-v14:${versions.androidX}"
implementation 'androidx.multidex:multidex:2.0.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void onCreate(Bundle savedInstanceState) {
setClicks();

if (UpdateUtils.showSupporterDialog(getActivity())) {
showSupporterDialog();
// showSupporterDialog();
}

if (AppSettings.getInstance(getActivity()).blackTheme) {
Expand Down Expand Up @@ -81,7 +81,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container,
"mute_management",
"app_memory",
"other_options",
"become_supporter",
// "become_supporter",
"faq",
"whats_new",
};
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/res/xml/changelog_l.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<changelog>

<version name="7.7.8">
<text>Dependency updates</text>
</version>

<version name="7.7.7">
<text>Well, would you look at that... I found a work around. You can now view who "likes" a tweet, again.</text>
</version>
Expand Down
12 changes: 6 additions & 6 deletions app/src/main/res/xml/main_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@

</com.klinker.android.twitter_l.views.preference.MaterialPreferenceCategory>

<com.klinker.android.twitter_l.views.preference.MaterialPreferenceCategory
android:title="@string/supporter_2016">
<!-- <com.klinker.android.twitter_l.views.preference.MaterialPreferenceCategory-->
<!-- android:title="@string/supporter_2016">-->

<com.klinker.android.twitter_l.views.preference.BecomeSupporterPreference
android:key="become_supporter"
android:icon="?supporter" />
<!-- <com.klinker.android.twitter_l.views.preference.BecomeSupporterPreference-->
<!-- android:key="become_supporter"-->
<!-- android:icon="?supporter" />-->

</com.klinker.android.twitter_l.views.preference.MaterialPreferenceCategory>
<!-- </com.klinker.android.twitter_l.views.preference.MaterialPreferenceCategory>-->

</PreferenceScreen>
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ buildscript {

ext.buildInfo = [
'id' : 'com.klinker.android.twitter_l',
'name' : '7.7.7',
'name' : '7.7.8',
'number' : System.getenv("BUILD_NUMBER") as Integer ?: 1458,
]

ext.versions = [
'gradlePlugin' : '3.6.0',
'gradlePlugin' : '3.6.1',
'targetSdk' : 29,
'minSdk' : 19,

Expand Down

0 comments on commit 0b208ef

Please sign in to comment.