Skip to content

Commit

Permalink
3.001
Browse files Browse the repository at this point in the history
  • Loading branch information
WangDaYeeeeee committed Feb 21, 2021
1 parent 8b79857 commit 5464f84
Show file tree
Hide file tree
Showing 23 changed files with 158,915 additions and 158,927 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "wangdaye.com.geometricweather"
minSdkVersion 19
targetSdkVersion 30
versionCode 30000
versionName "3.000"
versionCode 30001
versionName "3.001"
multiDexEnabled true
ndk {
abiFilters 'armeabi', 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ public static Controller runOnExecutor(Runnable runnable, Executor executor) {

public static <T> Controller delayRunOnIO(Runnable runnable, long milliSeconds) {
return new Controller(
Observable.create((ObservableOnSubscribe<T>) emitter -> runnable.run())
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.delay(milliSeconds, TimeUnit.MILLISECONDS)
Observable.timer(milliSeconds, TimeUnit.MILLISECONDS)
.subscribeOn(AndroidSchedulers.mainThread())
.observeOn(Schedulers.io())
.doOnComplete(runnable::run)
.subscribe()
);
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 30000,
"versionName": "3.000_fdroid",
"outputFile": "GeometricWeather 3.000_fdroid.apk"
"versionCode": 30001,
"versionName": "3.001_fdroid",
"outputFile": "GeometricWeather 3.001_fdroid.apk"
}
]
}
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 30000,
"versionName": "3.000_gplay",
"outputFile": "GeometricWeather 3.000_gplay.apk"
"versionCode": 30001,
"versionName": "3.001_gplay",
"outputFile": "GeometricWeather 3.001_gplay.apk"
}
]
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Referenced Strings:
2:00
2:30
3
3.000_fdroid
3.001_fdroid
30
300%
304
Expand Down
103,154 changes: 51,577 additions & 51,577 deletions ...ase/3.000/mapping/fdroidRelease/seeds.txt → ...ase/3.001/mapping/fdroidRelease/seeds.txt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2340,9 +2340,9 @@ androidx.constraintlayout.motion.widget.MotionScene$Transition:
public static final int AUTO_ANIMATE_TO_END
static final int TRANSITION_FLAG_FIRST_DRAW
javax.annotation.meta.TypeQualifierDefault
com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDrawable$2
com.jaredrummler.android.colorpicker.ColorPanelView:
private static final int DEFAULT_BORDER_COLOR
com.google.android.material.transition.platform.MaterialContainerTransform$TransitionDrawable$2
androidx.room.ForeignKey$Action
androidx.work.impl.constraints.trackers.Trackers:
public static synchronized void setInstance(androidx.work.impl.constraints.trackers.Trackers)
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ Referenced Strings:
2gcj
3
3.0
3.000_gplay
3.001_gplay
30
300%
304
Expand Down Expand Up @@ -15942,4 +15942,4 @@ Skipped unused resource res/layout/mtrl_alert_select_dialog_item.xml: 588 bytes
Skipped unused resource res/layout/mtrl_alert_select_dialog_multichoice.xml: 940 bytes (replaced with small dummy file of size 104 bytes)
Skipped unused resource res/layout/mtrl_alert_select_dialog_singlechoice.xml: 940 bytes (replaced with small dummy file of size 104 bytes)
Skipped unused resource res/layout/spinner_text.xml: 472 bytes (replaced with small dummy file of size 104 bytes)
Resource shrinking did not work (grew from 5197789 to 5197800); using original instead
Resource shrinking did not work (grew from 5199745 to 5199754); using original instead
105,484 changes: 52,742 additions & 52,742 deletions release/3.000/mapping/gplayRelease/seeds.txt → release/3.001/mapping/gplayRelease/seeds.txt

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 5464f84

Please sign in to comment.