implement archive2

This commit is contained in:
REAndroid 2023-04-24 19:36:52 +02:00
parent effd893de3
commit 6a6ccea50e
9 changed files with 9 additions and 10 deletions

View File

@ -17,7 +17,7 @@ package com.reandroid.apk;
import com.reandroid.archive.*;
import com.reandroid.archive2.Archive;
import com.reandroid.archive2.writter.ApkWriter;
import com.reandroid.archive2.writer.ApkWriter;
import com.reandroid.arsc.ApkFile;
import com.reandroid.arsc.array.PackageArray;
import com.reandroid.arsc.chunk.Chunk;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.apk.RenamedInputSource;
import com.reandroid.archive.InputSource;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive.InputSource;
import com.reandroid.archive2.block.LocalFileHeader;

View File

@ -13,10 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive2.io.ZipFileInput;
import com.reandroid.archive2.io.ZipInput;
import java.io.File;
import java.io.IOException;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive2.io.ZipFileOutput;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive2.io.ZipFileInput;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive.InputSource;
import com.reandroid.archive2.ZipSignature;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.apk.RenamedInputSource;
import com.reandroid.archive2.io.ArchiveEntrySource;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.archive2.writter;
package com.reandroid.archive2.writer;
import com.reandroid.archive.InputSource;
import com.reandroid.archive2.block.DataDescriptor;