File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ public static Object[] fromPackageJSON(File appDir)
2424 File packageInfo = new File (appDir , "/app/package.json" );
2525 if (!packageInfo .exists ())
2626 {
27- android .util .Log .d ("~~~~~~~~" , "A PACKAGE INFO DOES NOT EXIST" );
2827 return result ;
2928 }
3029
@@ -33,9 +32,7 @@ public static Object[] fromPackageJSON(File appDir)
3332 {
3433 rootObject = FileSystem .readJSONFile (packageInfo );
3534 if (rootObject != null && rootObject .has (AndroidKey ))
36- {
37- android .util .Log .d ("~~~~~~~~" , "Getting keys inside android" );
38-
35+ {
3936 JSONObject androidObject = rootObject .getJSONObject (AndroidKey );
4037 if (androidObject .has (V8FlagsKey ))
4138 {
@@ -68,8 +65,6 @@ public static Object[] fromPackageJSON(File appDir)
6865 }
6966 if (androidObject .has (EnableHeapSnapshotKey ))
7067 {
71-
72- android .util .Log .d ("~~~~~~~~" , "Found thy key" );
7368 result [5 ] = androidObject .getBoolean (EnableHeapSnapshotKey );
7469 }
7570 }
You can’t perform that action at this time.
0 commit comments