Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 567 Bytes

README-gradle.md

File metadata and controls

25 lines (22 loc) · 567 Bytes

PeekDatabase-V2

lanjutan dari ini Ini Source

  • build.gradle(Module:MyLib)
plugins {
    id 'com.android.library'
    id 'maven-publish'
}

...
afterEvaluate {
    publishing{
        publications{
            reslease(MavenPublication){
                from components.release
                groupId = 'com.gzeinnumer'
                artifactId = 'pdb'
                version = '1.0'
            }
        }
    }
}