We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08d5cf commit e8a68f7Copy full SHA for e8a68f7
lib/apk_installer.dart
@@ -128,6 +128,8 @@ class ApkReader {
128
((type ??= getResType(m.group(2)!)) == ResType.FILE) ? int.parse(m.group(3)!, radix: 16) : m.group(3)! );
129
if (resCodes.isNotEmpty) {
130
if (DEBUG) log("found RES-VALUES: $resCodes of RES-TYPE: $type for RES-ID: $resId");
131
+ //Fix 'type' not resolved in release mode because of the lazy nature of the 'map' function
132
+ resCodes.first;
133
if (type == ResType.COLOR) return Resource(resCodes.map((e)=>e), type!);
134
//resCodes as Iterable<int>;
135
String strings = await stringDump;
0 commit comments