Created
November 19, 2019 10:14
-
-
Save Bo9Dan/cd21a19b9641912282a2c7a0e14dee67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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