SDKのインストール¶
RichFlyer SDKのインストールはMavenを利用してインストールします。
Mavenを利用してインストール¶
-
ルートディレクトリ のbuild.gradleに以下を記述します。
/build.gradle
allprojects { repositories { jcenter() maven { url "https://infocity.github.io/richflyer-maven/" } } }
-
アプリモジュール のbuild.gradleに以下を記述します。
app/build.gradle
apply plugin: "maven" apply plugin: 'git-repo' android { // ... } dependencies { // ... implementation 'jp.co.infocity:RichFlyer:1.6.4' }