Skip to content

Latest commit

 

History

History

android

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

mktools_android

導入方法 Release

JitPack 経由で導入出来ます。

Android Gradle Plugin のバージョンが7.x 以上の場合は、 ルートのsettings.gradle に下記を記述してください。

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        ...

        maven { url 'https://jitpack.io' } // <- Add Line
    }
}

そのあとで適用したいモジュールで依存関係を追加してください。

dependencies {
    ...
    implementation 'com.github.tshion:mktools_lab:(tag name)' // <- Add Line
    ...
}