Skip to content

Commit

Permalink
rename BuildInfo -> ARSCLib
Browse files Browse the repository at this point in the history
  • Loading branch information
kikfox committed Sep 15, 2023
1 parent cdcb175 commit d3972ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/reandroid/apk/SplitJsonResourceDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package com.reandroid.apk;

import com.reandroid.arsc.BuildInfo;
import com.reandroid.arsc.ARSCLib;
import com.reandroid.arsc.chunk.PackageBlock;
import com.reandroid.arsc.chunk.StagedAlias;
import com.reandroid.arsc.chunk.TableBlock;
Expand Down Expand Up @@ -50,7 +50,7 @@ private void decodeSplitPackageJson(File resourcesDir, PackageBlock packageBlock
private void writeSplitPackageInfoJson(File packageDirectory, PackageBlock packageBlock) throws IOException {
JSONObject jsonObject = new JSONObject();

jsonObject.put(BuildInfo.NAME_arsc_lib_version, BuildInfo.getVersion());
jsonObject.put(ARSCLib.NAME_arsc_lib_version, ARSCLib.getVersion());

jsonObject.put(PackageBlock.NAME_package_id, packageBlock.getId());
jsonObject.put(PackageBlock.NAME_package_name, packageBlock.getName());
Expand Down

0 comments on commit d3972ad

Please sign in to comment.