コンテンツにスキップ

SDKのインストール

RichFlyer SDKのインストールはMavenを利用してインストールします。

Mavenを利用してインストール

  1. ルートディレクトリ のbuild.gradleに以下を記述します。

    /build.gradle

    allprojects {
        repositories {
            jcenter()
            maven {
              url "https://infocity.github.io/richflyer-maven/"
            }
        }
    }
    


  2. アプリモジュール のbuild.gradleに以下を記述します。

    app/build.gradle

      apply plugin: "maven"
      apply plugin: 'git-repo'
    
      android {
        // ...
      }
    
      dependencies {
        // ...
        implementation 'jp.co.infocity:RichFlyer:1.6.0'
      }