tcUpsafety / android-awt

Combination of code from Apache Harmony and Apache Commons Imaging to replace classes in java.awt for Android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-awt

This is a fork of windwardadmin/android-awt

This project provides java.awt and javax.imagio since we can't use these classes on Android. Code is taken from Apache Harmony, Apache Commons Imaging and witwall/appengine-awt.

Import

repositories {
    maven { url "http://maven.andob.info/repository/open_source" }
}
dependencies {
	implementation 'ro.andob.androidawt:androidawt:1.0.2'
}

You can use this library in order to make OpenPDF work on Android

repositories {
    maven { url "http://maven.andob.info/repository/open_source" }
}
dependencies {
	implementation 'com.github.librepdf:openpdf:1.3.8'
	implementation 'ro.andob.androidawt:androidawt:1.0.2'
}

Proguard

-dontwarn org.bouncycastle.**
-dontwarn java.lang.invoke.**

Licensed under Apache License

About

Combination of code from Apache Harmony and Apache Commons Imaging to replace classes in java.awt for Android.

License:Apache License 2.0


Languages

Language:Java 100.0%Language:Shell 0.0%