All Projects → happysingh23828 → android-github-repo-template

happysingh23828 / android-github-repo-template

Licence: other
A template for creating new repositories for the new Android Project.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to android-github-repo-template

grundgesetz-skeleton
You have a documentation. I turn it into a website. Any questions?
Stars: ✭ 42 (+133.33%)
Mutual labels:  starter-kit
stow-box
Formerly Linnia-box Starter kit for stow protocols for building Decentralized React Apps
Stars: ✭ 15 (-16.67%)
Mutual labels:  starter-kit
webpack-starter
🗽 Webpack + Babel + Sass
Stars: ✭ 11 (-38.89%)
Mutual labels:  starter-kit
starter-reactnative-nestjs-mysql
Starter mobile ReactNative NestJS MySQL with continuous integration and AWS deployment
Stars: ✭ 16 (-11.11%)
Mutual labels:  starter-kit
nodejs-hackathon-boilerplate-starter-kit
Just a Hackaton/Startup Full-stack node.js starter
Stars: ✭ 37 (+105.56%)
Mutual labels:  starter-kit
react-typescript-starter
Simple starter-kit for react, redux, typescript, aphrodite, webpack
Stars: ✭ 14 (-22.22%)
Mutual labels:  starter-kit
botfuel-sample-starter
Starter bot using Botfuel Dialog
Stars: ✭ 24 (+33.33%)
Mutual labels:  starter-kit
react-starter
Starter kit for React.
Stars: ✭ 16 (-11.11%)
Mutual labels:  starter-kit
starter-kit
Start your career path to become a developer.
Stars: ✭ 19 (+5.56%)
Mutual labels:  starter-kit
Sass-Starter
SASS Starter - SCSS boilerplate for SMACSS
Stars: ✭ 35 (+94.44%)
Mutual labels:  starter-kit
aurelia-typescript-boilerplate
A starter kit for building a standard navigation-style app with Aurelia, typescript and webpack by @w3tecch
Stars: ✭ 18 (+0%)
Mutual labels:  starter-kit
shopify-app-starter-kit
Shopify app starter kit written in Ruby on Rails w/ appropriate tools to get your Shopify app up and running quickly 🚀
Stars: ✭ 42 (+133.33%)
Mutual labels:  starter-kit
react-phoenix-users-boilerplate
Elixir/Phoenix + React + users template/boilerplate.
Stars: ✭ 71 (+294.44%)
Mutual labels:  starter-kit
qt-qml-project-template-with-ci
Template for a Qt/QML application with batteries included: GitHub C.I. for your QML app; automated gui testing with Xvfb; automatic code-format checks and more. Compiles for Desktop and Mobile (Linux, Mac, Windows, and Android).
Stars: ✭ 33 (+83.33%)
Mutual labels:  github-template
nextjs-typescript-quickstart
Get started on Next.js with TypeScript in seconds.
Stars: ✭ 33 (+83.33%)
Mutual labels:  starter-kit
Dash-UI
Bootstrap 5 Admin & Dashboard Template - Dash-UI. Dash UI Kit is a free and open-source components and templates kit fully coded with Bootstrap 5.
Stars: ✭ 213 (+1083.33%)
Mutual labels:  starter-kit
run-aspnetcore-basics retired
One Solution - One Project for web application development with Asp.Net Core & EF.Core. Only one web application project which used aspnetcore components; razor pages, middlewares, dependency injection, configuration, logging. To create websites with minimum implementation of asp.net core based on HTML5, CSS, and JavaScript. You can use this boi…
Stars: ✭ 15 (-16.67%)
Mutual labels:  starter-kit
Asteroids
Yep, a gulp-ready-nunjucks-lover-sass-powered-and-humanstxt-included html starter kit!
Stars: ✭ 15 (-16.67%)
Mutual labels:  starter-kit
blaupause
[NOT MAINTAINED] Use https://github.com/netlify-templates/victor-hugo instead
Stars: ✭ 72 (+300%)
Mutual labels:  starter-kit
Kotlin-Android-Studio-Templates
Kotlin Android Studio Templates - A collection of templates in Kotlin
Stars: ✭ 30 (+66.67%)
Mutual labels:  android-template

Android Project Github Template

platform GitHub license Github Followers GitHub stars GitHub forks GitHub watchers Twitter Follow

A template for creating new repositories for the new Android Project.

What is diffrent here from creating a new project from Android Studio?

This repository is meant to serve as a general template for how to set up new repository for Android. In general, setting up a new repository takes 30-60 minutes; use this repository as a way of setting up in 5 minutes, and use the following checklist to ensure that you've set up the repository correctly. It has additional modules and files to save your time.

Features

  • BuildSrc module (for handling dependecies at one place).
  • Core module (includes Kotlin Extensions, Base classess etc.).
  • Static tool analysis with Report generation (Ktlint, KtlintAutoFormat Detekt, Custom Detekt Lint Rules).
  • Android CI (using Github's Action workflow)
  • .gitignore for Android Studio Projects.
  • and many more to come....

Checklist

These instructions are basic; The important part is making sure that you follow the checklist for error free setup.

Create Repository from Github

  • Click on use this template on this repository.
  • Enter your Github repo name.
  • Uncheck include all branches option.
  • Click on create repo from template button. now your repo has been created.

Clone Repo in Android Studio and set up.

  • Clone your newly created github repo into Android Studio.
  • Go to settings.gradle and change rootProject.name as per your project name.
  • Go to App's build.gradle and change applicationId as per your project package.
  • Go to App's module strings.xml and change app_name to your app name.
  • Delete Readme.MD file.
  • [Optional] Go to themes.xml and refactor Base Application them's name Theme.AndroidRepoGithubTemplate as per your requirements. that's it.

Additional Notes

- Code Quality Checks

This projects uses detekt and ktlint static code analyser in CI/CD pipeline to maintain code quality. they also genrated reports.

Run detekt locally

Use ./gradlew detekt

Reports location for each module-
-/app/build/reports/detekt/report.html
-/core/build/reports/detekt/report.html

Run ktlint locally

Use ./gradlew ktlint

Reports location for each module-
-/app/build/reports/ktlint/ktlint-checkstyle-report.xml
-/core/build/reports/ktlint/ktlint-checkstyle-report.xml

Run ktlint formatter locally

Use ./gradlew ktlintFormat

If this project helps you in anyway, show your love ❤️ by putting a on this project ✌️

- Contributing

Please fork this repository and contribute back using pull requests.

Any contributions, large or small, major features, bug fixes, are welcomed and appreciated but will be thoroughly reviewed .

- Contact - Let's become friend

- License

MIT License

Copyright (c) 2020 Happy Singh

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.```
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].