Android library for building poc plugin apps that work with the Android mobile client.
The libary code is in the PluginAndroidLibrary folder.
- Android Studio
- JDK 7
- Android SDK 19
- Android Build Tools 19.1
This section assumes that the Android app's project directory and the Library's project directory are in the same parent directory.
- In the app's settings.gradle file, add the following lines:
include ':PluginAndroidLibrary:plugin_android_library'
project (':PluginAndroidLibrary:plugin_android_library').projectDir = new File(settingsDir, '../PluginAndroidLibrary/plugin_android_library')
- In app folder, build.gradle Add to the dependencies
compile project(path: ':PluginAndroidLibrary:plugin_android_library')