Skip to content

Commit c845795

Browse files
committed
I/O '19 updates
- Upgrade a ton of deps and use new alpha features - Get rid of billing crap since no one donates and Patreon seems better - Use version codes instead of code names since that's clearer Signed-off-by: Alex Saveau <[email protected]>
1 parent d07547a commit c845795

File tree

28 files changed

+69
-395
lines changed

28 files changed

+69
-395
lines changed

app/android-base/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ dependencies {
8282
implementation(Config.Libs.Jetpack.multidex)
8383
implementation(Config.Libs.Jetpack.work)
8484
implementation(Config.Libs.PlayServices.playCore)
85-
implementation(Config.Libs.Misc.billing)
8685

8786
implementation(Config.Libs.Firebase.perf)
8887
implementation(Config.Libs.Firebase.invites)

app/android-base/src/main/java/com/supercilex/robotscouter/DonateDialog.kt

-215
This file was deleted.

app/android-base/src/main/java/com/supercilex/robotscouter/HomeActivity.kt

+5-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import android.view.MenuItem
1010
import android.view.View
1111
import android.view.ViewOutlineProvider
1212
import androidx.appcompat.app.ActionBarDrawerToggle
13-
import androidx.appcompat.app.AppCompatDelegate
1413
import androidx.core.net.toUri
1514
import androidx.core.view.GravityCompat
1615
import androidx.core.view.children
@@ -164,10 +163,9 @@ internal class HomeActivity : ActivityBase(), NavigationView.OnNavigationItemSel
164163
}
165164
prefs.asLiveData().observe(this) {
166165
bottomNavigation.menu.findItem(R.id.templates).isEnabled = isTemplateEditingAllowed
167-
if (isSignedIn) delegate.setLocalNightMode(AppCompatDelegate.getDefaultNightMode())
168166
}
169167

170-
if (isInTabletMode() && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
168+
if (isInTabletMode() && Build.VERSION.SDK_INT >= 21) {
171169
scoutList.outlineProvider = object : ViewOutlineProvider() {
172170
private val padding = resources.getDimensionPixelSize(R.dimen.spacing_mini)
173171

@@ -250,7 +248,6 @@ internal class HomeActivity : ActivityBase(), NavigationView.OnNavigationItemSel
250248

251249
override fun onNavigationItemSelected(item: MenuItem): Boolean {
252250
when (val id = item.itemId) {
253-
R.id.action_donate -> DonateDialog.show(supportFragmentManager)
254251
R.id.action_donate_patreon ->
255252
launchUrl(this, "https://www.patreon.com/SUPERCILEX".toUri())
256253
else -> runIfSignedIn {
@@ -320,7 +317,7 @@ internal class HomeActivity : ActivityBase(), NavigationView.OnNavigationItemSel
320317
setReorderingAllowed(false)
321318
} else if (
322319
transitionView != null &&
323-
Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP
320+
Build.VERSION.SDK_INT >= 21
324321
) {
325322
addSharedElement(transitionView, "media")
326323
fragment.sharedElementEnterTransition = fragmentTransition.clone()
@@ -412,7 +409,8 @@ internal class HomeActivity : ActivityBase(), NavigationView.OnNavigationItemSel
412409
bottomNavigation.selectedItemId = R.id.templates
413410
}
414411
}
415-
containsKey(DONATE_EXTRA) -> DonateDialog.show(supportFragmentManager)
412+
containsKey(DONATE_EXTRA) ->
413+
launchUrl(this@HomeActivity, "https://www.patreon.com/SUPERCILEX".toUri())
416414
containsKey(UPDATE_EXTRA) -> showStoreListing()
417415
}
418416
}
@@ -458,7 +456,7 @@ internal class HomeActivity : ActivityBase(), NavigationView.OnNavigationItemSel
458456
}
459457

460458
init {
461-
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
459+
if (Build.VERSION.SDK_INT >= 21) {
462460
GlobalScope.launch { fragmentTransition }
463461
}
464462
}

app/android-base/src/main/java/com/supercilex/robotscouter/RobotScouter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ internal class RobotScouter : MultiDexApplication(), Configuration.Provider {
5454
if (BuildConfig.DEBUG) {
5555
// Purposefully put this after initialization since Google is terrible with disk I/O.
5656
val vmBuilder = StrictMode.VmPolicy.Builder().detectAll()
57-
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
57+
if (Build.VERSION.SDK_INT >= 28) {
5858
vmBuilder.penaltyListener(mainExecutor, StrictMode.OnVmViolationListener {
5959
if (
6060
it !is UntaggedSocketViolation

app/android-base/src/main/res/layout/dialog_donate.xml

-58
This file was deleted.

app/android-base/src/main/res/menu/home_drawer.xml

+1-6
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,9 @@
2020
</group>
2121

2222
<group android:id="@+id/three">
23-
<item
24-
android:id="@+id/action_donate"
25-
android:icon="@drawable/ic_donate_grey_24dp"
26-
android:title="@string/donate_title" />
27-
2823
<item
2924
android:id="@+id/action_donate_patreon"
30-
android:icon="@drawable/ic_launch_accent_24dp"
25+
android:icon="@drawable/ic_donate_grey_24dp"
3126
android:title="@string/donate_patreon_title" />
3227

3328
<item

app/android-base/src/main/res/values-fr/strings.xml

-7
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616

1717
<string name="installing_module">Installation du module…</string>
1818

19-
<!-- Donate dialog -->
20-
<string name="donate_title">Faites un don</string>
21-
<string name="donate_amount">%d€</string>
22-
<string name="donate_monthly_message">Faire un don automatiquement chaque mois</string>
23-
<string name="donate_cancel_message">Êtes-vous certains de ne pas vouloir faire de don ? Nous apprécions toute contribution, peu importe la taille !</string>
24-
<string name="donate_thanks_message">Merci beaucoup ! Toute aide possible est grandement appréciée !</string>
25-
2619
<!-- Link activity -->
2720
<string name="link_teams_imported_message">Équipes importées avec succès</string>
2821
<string name="link_uri_parse_error">Erreur : analyse de l\'URL impossible</string>

app/android-base/src/main/res/values/strings.xml

-9
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,7 @@
1717
<string name="sign_in_try_again_title">Try again</string>
1818

1919
<string name="installing_module">Installing module…</string>
20-
21-
<!-- Donate dialog -->
22-
<string name="donate_title">Donate</string>
2320
<string name="donate_patreon_title">Support development</string>
24-
<string name="donate_amount">$%d</string>
25-
<string name="donate_monthly_message">Automatically donate each month</string>
26-
<string name="donate_cancel_message">
27-
Are you sure you don’t want to donate? We appreciate any donation no matter how small!
28-
</string>
29-
<string name="donate_thanks_message">Thank you!!! Any and all help is greatly appreciated!</string>
3021

3122
<!-- Link activity -->
3223
<string name="link_teams_imported_message">Teams successfully imported</string>

0 commit comments

Comments
 (0)