0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

android で puredata を利用する

Last updated at Posted at 2020-01-28

#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しましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?