Java Question Create stan.jar

moster67

Expert
Licensed User
Longtime User
I am trying to create a stan.jar package following the instructions shown here:

You can let the IDE create the jar from the maven artifacts.

Create a new project and add this line:
Code:
#AdditionalJar: com.android.support:support-v4
Run the project.

A jar file named Objects\bin\extra\stan.jar will be created.
You can use this jar in your Eclipse project. It will include ViewCompat.SetBackground if your maven repositories are updated.

As a coincidence, it is actually "com.android.support:support-v4" I want.

However, after running the project, there is no "stan.jar" in the folder: Objects\bin\extra.
There is only an "asset" folder.

I am missing something?
I am attaching the project.
 

Attachments

  • createstanjar.zip
    8 KB · Views: 228

DonManfred

Expert
Licensed User
Longtime User
com.android.support:support-v4 is no longer a single jar. It is not since years now

It is now splitted into different packages.

WHAT artifact exactly you really need?
 
Last edited:
Top