Skip to content

teamqomunal/android-library-kit-starter

 
 

Repository files navigation

Android Research Tech

  • Template repository for doing research on Android Technologies

How To Use / Implement This Project

Step 1. Add the JitPack repository to your build file

<Option 1> Groovy Gradle

// Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

<Option 2> Kotlin DSL Gradle`

// Add it in your root build.gradle.kts at the end of repositories:
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven("https://jitpack.io")
    }
}

Step 2. Add the dependency

<Option 1> Groovy

dependencies {
    implementation 'com.github.teamqomunal:android-library-kit-starter:{tag}'
}

<Option 2> Kotlin DSL

dependencies {
    implementation("com.github.teamqomunal:android-library-kit-starter:{tag}")
}

Colaborator

Very open to anyone, I'll write your name under this, please contribute by sending an email to me

  • Mail To [email protected]
  • Subject : Github _ [Github-Username-Account] _ [Repository-Name]
  • Example : Github_amirisback_android-research

Name Of Contribute

  • Amir Qomunal
  • Waiting List
  • Waiting List

Waiting for your contribute

Attention !!!

  • Please enjoy and don't forget fork and give a star
  • Don't Forget Follow teamqomunal Github Account

Banner

About

Template Android Library Kit

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 100.0%