Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate Complete Repo Process #51

Merged
merged 56 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
879bbb9
🌟 Add test table
theapache64 Nov 4, 2020
4010c3a
🔖 wrapped with kotlin
theapache64 Nov 4, 2020
372c810
🌟 add temp files
theapache64 Nov 4, 2020
ce03163
🆙 update intellij version
theapache64 Nov 4, 2020
ada2fe3
🌟 add MVVM normal projects to data.json
theapache64 Nov 6, 2020
fd2f2ec
🌟 add MVVM clean arch to data.json
theapache64 Nov 6, 2020
e13dcd8
◀️ finish converting repos to json
theapache64 Nov 6, 2020
b3bf296
🌟 add keys to data.json
theapache64 Nov 6, 2020
7709937
◀️ finish server data generation
theapache64 Nov 6, 2020
4101eed
◀️ daggerize project
theapache64 Nov 6, 2020
3ceefda
🌄 create init version of README
theapache64 Nov 6, 2020
f82db5f
☑️ test 2
theapache64 Nov 6, 2020
522b60c
🆙 update README
theapache64 Nov 6, 2020
61880be
🌄 init version of full repos
theapache64 Nov 6, 2020
64c25fe
◀️ try bold
theapache64 Nov 6, 2020
adfa24f
🌟 new line
theapache64 Nov 6, 2020
027a0ca
🎉 min check
theapache64 Nov 6, 2020
02a5cb9
🎉 min check 2
theapache64 Nov 6, 2020
bb3fe05
📖 update README
theapache64 Nov 6, 2020
0cd4047
🌟 add last commit time
theapache64 Nov 9, 2020
3cbb1fd
💚 test sort algo
theapache64 Nov 9, 2020
7b93406
◀️ backup
theapache64 Nov 9, 2020
2a92074
◀️ backup
theapache64 Nov 9, 2020
5450dd1
◀️ backup
theapache64 Nov 9, 2020
231766b
◀️ backup
theapache64 Nov 9, 2020
bc15217
◀️ backup
theapache64 Nov 9, 2020
2b6f44c
◀️ backup
theapache64 Nov 9, 2020
4ce280d
◀️ backup
theapache64 Nov 9, 2020
cd1e53a
◀️ backup
theapache64 Nov 9, 2020
62383a5
🌟 add last update
theapache64 Nov 9, 2020
7949758
🚀 UPDATE README!
theapache64 Nov 9, 2020
cc6f9f3
🆙 update JAR
theapache64 Nov 9, 2020
2512c3a
Merge branch 'master' of github.com:theapache64/awesome-android-kotli…
theapache64 Nov 9, 2020
ab54afb
🚀 UPDATE README!
theapache64 Nov 9, 2020
5577ba6
🚨 remove debug limit
theapache64 Nov 9, 2020
7f9ec29
Merge branch 'master' of github.com:theapache64/awesome-android-kotli…
theapache64 Nov 9, 2020
383c6bd
🚀 UPDATE README!
theapache64 Nov 9, 2020
a984fff
📖 update model
theapache64 Nov 9, 2020
90c1922
🚀 UPDATE README!
theapache64 Nov 9, 2020
b5aefd5
🚀 UPDATE README!
theapache64 Nov 10, 2020
20437d7
🚀 UPDATE README!
theapache64 Nov 10, 2020
7880630
🚀 UPDATE README!
theapache64 Nov 10, 2020
d04fee1
🌟 add refresh emoji
theapache64 Nov 10, 2020
44447a7
🚀 UPDATE README!
theapache64 Nov 10, 2020
81835e6
🌟 add more stuff
theapache64 Nov 10, 2020
33fc0ee
Merge branch 'master' of github.com:theapache64/awesome-android-kotli…
theapache64 Nov 10, 2020
d3debeb
🚀 UPDATE README!
theapache64 Nov 10, 2020
b8e5a8d
🚀 UPDATE README!
theapache64 Nov 10, 2020
23cf411
📝 update docs
theapache64 Nov 10, 2020
0d13393
Merge branch 'master' of github.com:theapache64/awesome-android-kotli…
theapache64 Nov 10, 2020
53240c5
🚀 UPDATE README!
Nov 10, 2020
5eab629
📝 update contribute.md
theapache64 Nov 10, 2020
fa47a5e
Merge branch 'master' of github.com:theapache64/awesome-android-kotli…
theapache64 Nov 10, 2020
de36beb
🚀 UPDATE README!
Nov 10, 2020
076e178
Merge branch 'master' into master
theapache64 Nov 10, 2020
5c40456
🚀 UPDATE README!
Nov 10, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/update_readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Update README

on:
push:
branches:
- master
schedule:
- cron: '0 */6 * * *'

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Get latest repo
uses: actions/checkout@master
- name: Create local changes
run: java -jar awesome-android-kotlin-apps.main.jar
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.THE_GITHUB_ACCESS_TOKEN }}
- name: Commit files
run: |
git config --local user.email "theapache64-bot@gmail.com"
git config --local user.name "theapache64-bot"
git commit -m "🚀 UPDATE README!" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.THE_GITHUB_ACCESS_TOKEN }}
156 changes: 154 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,154 @@
.DS_Store
desktop.ini

# Created by https://www.toptal.com/developers/gitignore/api/kotlin,intellij,gradle
# Edit at https://www.toptal.com/developers/gitignore?templates=kotlin,intellij,gradle

### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### Intellij Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr

# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
.idea/**/sonarlint/

# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
.idea/**/sonarIssues.xml

# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
.idea/**/markdown-navigator.xml
.idea/**/markdown-navigator-enh.xml
.idea/**/markdown-navigator/

# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
.idea/$CACHE_FILE$

# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
.idea/codestream.xml

### Kotlin ###
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

### Gradle ###
.gradle
build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Cache of project
.gradletasknamecache

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

### Gradle Patch ###
**/build/

# End of https://www.toptal.com/developers/gitignore/api/kotlin,intellij,gradle
SecretConstants.kt
!awesome-android-kotlin-apps.main.jar
Binary file added .gradle/6.3/fileHashes/fileHashes.lock
Binary file not shown.
Binary file not shown.
Binary file added .gradle/6.5/executionHistory/executionHistory.lock
Binary file not shown.
Binary file added .gradle/6.5/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/6.5/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/6.5/fileHashes/fileHashes.lock
Binary file not shown.
Empty file added .gradle/6.5/gc.properties
Empty file.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Wed Nov 04 19:20:35 IST 2020
gradle.version=6.3
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/checksums/sha1-checksums.bin
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
27 changes: 27 additions & 0 deletions .idea/artifacts/awesome_android_kotlin_apps_main_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions contributing.md → CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@

- Explain what the PR fixes or improves.

- If your PR aims to add a new app to list, specify the tech stack and explain why is it worth to include.
- If you aim to add a new app to list, specify the tech stack and explain why is it worth to include via [raising an issue here](https://github.com/androiddevnotes/awesome-android-kotlin-apps/issues/new?title=Add%20New%20Repo&body=**Repo%20UR**:%20REPO_URL_GOES_HERE%20**Tech%20Stack**:%20TECH_STACK_GOES_HERE&label=new-repo)




- Use sensible commit messages

- If your PR fixes a separate issue number, include it in the commit message.
Expand Down
3 changes: 3 additions & 0 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.github.aaka.AppKt

Loading