#pd-for-android
公式のinstall手順に沿ってインストールします。
pd-for-androidのgithubからリポジトリをCloneします。
1. Clone this repository
2. Go to the repository folder: cd pd-for-android
3. Initialize and update the git submodules: git submodule update --init --recursive
4. Assemble the release: ./gradlew PdCore:assembleRelease (Note: Windows users should run gradlew)
5. Now you have your PdCore .aar file in the folder PdCore/build/outputs/aar
無事、aarファイルが作成できましたら、Android Studioのプロジェクトを立ち上げ、aarファイルをimportします。
File > New Import Module
でaarファイルを指定してください。
最後に、Project Structureでaarファイルのバージョンに合わせて指定すれば完了です。
dependencies {
compile(name:'pd-core-*.*.*-SNAPSHOT', ext:'aar')
}
##考えられるエラー
Warning: License for package Android SDK Platform ** not accepted.
Android SDKのバージョンが古いと git submodules: git submodule update --init --recursive
のときにpackege Liceseがないと言われます。
Android Studioを立ち上げて、必要とするAndroid SDKをInstallしましょう。