~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
69ccbeb3
—
pyrossh 2 years ago
fix android share urls
- lib/navigation.dart +2 -2
lib/navigation.dart
CHANGED
|
@@ -188,7 +188,7 @@ shareAppLink(BuildContext context) {
|
|
|
188
188
|
if (isAndroid()) {
|
|
189
189
|
Share.share(
|
|
190
190
|
subject: "Only Bible App",
|
|
191
|
-
"https://play.google.com/store/apps/details?id=
|
|
191
|
+
"https://play.google.com/store/apps/details?id=sh.pyros.only_bible_app",
|
|
192
192
|
);
|
|
193
193
|
} else if (isIOS()) {
|
|
194
194
|
Share.share(
|
|
@@ -205,7 +205,7 @@ shareAppLink(BuildContext context) {
|
|
|
205
205
|
|
|
206
206
|
rateApp(BuildContext context) {
|
|
207
207
|
if (isAndroid()) {
|
|
208
|
-
context.openUrl("https://play.google.com/store/apps/details?id=
|
|
208
|
+
context.openUrl("https://play.google.com/store/apps/details?id=sh.pyros.only_bible_app");
|
|
209
209
|
} else if (isIOS()) {
|
|
210
210
|
context.openUrl("https://apps.apple.com/us/app/only-bible-app/packageName");
|
|
211
211
|
}
|