Skip to content

Instantly share code, notes, and snippets.

@Bo9Dan
Created November 19, 2019 10:14
Show Gist options
  • Save Bo9Dan/cd21a19b9641912282a2c7a0e14dee67 to your computer and use it in GitHub Desktop.
Save Bo9Dan/cd21a19b9641912282a2c7a0e14dee67 to your computer and use it in GitHub Desktop.
project/
├──libs/
| └── *.jar <-- if your library has jar files, they go here
├──src/
└── main/
├── AndroidManifest.xml
├── java/
└── jniLibs/
├── arm64-v8a/ <-- ARM 64bit
│ └── yourlib.so
├── armeabi-v7a/ <-- ARM 32bit
│ └── yourlib.so
└── x86/ <-- Intel 32bit
└── yourlib.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment