only-bible-app v3.7.2+24
git clone https://git.pyrossh.dev/only-bible-app
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
ef87133
— Peter John
2026-07-25T12:37:05+05:30
only-photo-app: fix Android thumbnail/asset cache being wiped every launch
- lib/gen/assets.gen.dart +63 -1
- pubspec.yaml +2 -2
lib/gen/assets.gen.dart
CHANGED
|
@@ -9,4 +9,66 @@
|
|
|
9
9
|
// ignore_for_file: type=lint
|
|
10
10
|
// ignore_for_file: deprecated_member_use,directives_ordering,implicit_dynamic_list_literal,unnecessary_import
|
|
11
11
|
|
|
12
|
+
class $AssetsBiblesGen {
|
|
13
|
+
const $AssetsBiblesGen();
|
|
14
|
+
|
|
15
|
+
/// File path: assets/bibles/bn.bin.gz
|
|
16
|
+
String get bnBin => 'assets/bibles/bn.bin.gz';
|
|
17
|
+
|
|
18
|
+
/// File path: assets/bibles/en_bsb.bin.gz
|
|
19
|
+
String get enBsbBin => 'assets/bibles/en_bsb.bin.gz';
|
|
20
|
+
|
|
21
|
+
/// File path: assets/bibles/en_kjv.bin.gz
|
|
22
|
+
String get enKjvBin => 'assets/bibles/en_kjv.bin.gz';
|
|
23
|
+
|
|
24
|
+
/// File path: assets/bibles/gu.bin.gz
|
|
25
|
+
String get guBin => 'assets/bibles/gu.bin.gz';
|
|
26
|
+
|
|
27
|
+
/// File path: assets/bibles/hi.bin.gz
|
|
28
|
+
String get hiBin => 'assets/bibles/hi.bin.gz';
|
|
29
|
+
|
|
30
|
+
/// File path: assets/bibles/ja.bin.gz
|
|
31
|
+
String get jaBin => 'assets/bibles/ja.bin.gz';
|
|
32
|
+
|
|
33
|
+
/// File path: assets/bibles/kn.bin.gz
|
|
34
|
+
String get knBin => 'assets/bibles/kn.bin.gz';
|
|
35
|
+
|
|
36
|
+
/// File path: assets/bibles/ml.bin.gz
|
|
37
|
+
String get mlBin => 'assets/bibles/ml.bin.gz';
|
|
38
|
+
|
|
39
|
+
/// File path: assets/bibles/ne.bin.gz
|
|
40
|
+
String get neBin => 'assets/bibles/ne.bin.gz';
|
|
41
|
+
|
|
42
|
+
/// File path: assets/bibles/or.bin.gz
|
|
43
|
+
String get orBin => 'assets/bibles/or.bin.gz';
|
|
44
|
+
|
|
45
|
+
/// File path: assets/bibles/pa.bin.gz
|
|
46
|
+
String get paBin => 'assets/bibles/pa.bin.gz';
|
|
47
|
+
|
|
48
|
+
/// File path: assets/bibles/ta.bin.gz
|
|
49
|
+
String get taBin => 'assets/bibles/ta.bin.gz';
|
|
50
|
+
|
|
51
|
+
/// File path: assets/bibles/te.bin.gz
|
|
52
|
+
String get teBin => 'assets/bibles/te.bin.gz';
|
|
53
|
+
|
|
54
|
+
/// List of all assets
|
|
55
|
+
List<String> get values => [
|
|
56
|
+
bnBin,
|
|
57
|
+
enBsbBin,
|
|
58
|
+
enKjvBin,
|
|
59
|
+
guBin,
|
|
60
|
+
hiBin,
|
|
61
|
+
jaBin,
|
|
62
|
+
knBin,
|
|
63
|
+
mlBin,
|
|
64
|
+
neBin,
|
|
65
|
+
orBin,
|
|
66
|
+
paBin,
|
|
67
|
+
taBin,
|
|
68
|
+
teBin,
|
|
69
|
+
];
|
|
70
|
+
}
|
|
71
|
+
|
|
12
|
-
abstract final class Assets {
|
|
72
|
+
abstract final class Assets {
|
|
73
|
+
static const $AssetsBiblesGen bibles = $AssetsBiblesGen();
|
|
74
|
+
}
|
pubspec.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: only_bible_app
|
|
2
2
|
description: The only bible app you will ever need
|
|
3
3
|
publish_to: 'none'
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.6.0+17
|
|
5
5
|
resolution: workspace
|
|
6
6
|
|
|
7
7
|
environment:
|
|
@@ -35,7 +35,7 @@ dev_dependencies:
|
|
|
35
35
|
flutter_lints: ^6.0.0
|
|
36
36
|
flutter_launcher_icons: ^0.14.4
|
|
37
37
|
test: ^1.30.0
|
|
38
|
-
build_runner:
|
|
38
|
+
build_runner: ^2.15.1
|
|
39
39
|
flutter_gen_runner: any
|
|
40
40
|
envied_generator: ^1.3.8
|
|
41
41
|
path_provider_platform_interface: ^2.1.2
|