7
8

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 5 years have passed since last update.

Processing for Android を AndroidStudio で動かしたい

Last updated at Posted at 2017-09-05

Processing って?

グラフィックに特化したビジュアルプログラミングが出来る、Javaベースの言語
例えばこういうのが作れる(オシャレ!)
https://www.openprocessing.org/

以下 Processing for Android を AndroidStudio で動かす設定

まずはここからダウンロード

https://github.com/processing/processing-android/releases/tag/latest
AndroidMode.zip

展開してコピペ

.
├── examples
├── icons
├── libraries
├── mode
├── mode.properties
├── processing-core.zip // processing-core.jar にして ./app/libs に入れる
├── templates
├── theme
└── tools

build.gradle

dependencies {
    compile files('libs/processing-core.jar')
}

詳細やサンプルコードは公式参照

license

core library のライセンスが LGPL なので注意
https://github.com/processing/processing-android/wiki/Copyright-and-Licensing

まとめ

AndroidStudio でコーディングできる == Kotlin で Processing できる!


参考リンク
http://android.processing.org/
https://github.com/processing/processing-android

7
8
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
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?