Can we use almost all standard Java packages in an Android app?

I created a Java application that uses JAI . I searched and found out that we cannot use graphic libraries such as AWTor Swing.

So, can we use any standard Java library in an Android application or are there some limitations? I also noticed that the jar JAI file is not available in my Android application (eclipse).

+4
source share
1 answer

For a list of Java packages available on Android, see the Android API: http://developer.android.com/reference/packages.html

+7
source

Source: https://habr.com/ru/post/1527955/


All Articles