Skip to content

Commit 8bc16ba

Browse files
theapache64theapache64-bot
and
theapache64-bot
authored
Automate Complete Repo Process (#51)
* 🌟 Add test table * πŸ”– wrapped with kotlin * 🌟 add temp files * πŸ†™ update intellij version * 🌟 add MVVM normal projects to data.json * 🌟 add MVVM clean arch to data.json * ◀️ finish converting repos to json * 🌟 add keys to data.json * ◀️ finish server data generation * ◀️ daggerize project * πŸŒ„ create init version of README * β˜‘οΈ test 2 * πŸ†™ update README * πŸŒ„ init version of full repos * ◀️ try bold * 🌟 new line * πŸŽ‰ min check * πŸŽ‰ min check 2 * πŸ“– update README * 🌟 add last commit time * πŸ’š test sort algo * ◀️ backup * ◀️ backup * ◀️ backup * ◀️ backup * ◀️ backup * ◀️ backup * ◀️ backup * ◀️ backup * 🌟 add last update * πŸš€ UPDATE README! * πŸ†™ update JAR * πŸš€ UPDATE README! * 🚨 remove debug limit * πŸš€ UPDATE README! * πŸ“– update model * πŸš€ UPDATE README! * πŸš€ UPDATE README! * πŸš€ UPDATE README! * πŸš€ UPDATE README! * 🌟 add refresh emoji * πŸš€ UPDATE README! * 🌟 add more stuff * πŸš€ UPDATE README! * πŸš€ UPDATE README! * πŸ“ update docs * πŸš€ UPDATE README! * πŸ“ update contribute.md * πŸš€ UPDATE README! * πŸš€ UPDATE README! Co-authored-by: theapache64-bot <theapache64-bot@gmail.com>
1 parent 1a97a9e commit 8bc16ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2328
-883
lines changed
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Update README
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
schedule:
8+
- cron: '0 */6 * * *'
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Set up JDK 1.8
17+
uses: actions/setup-java@v1
18+
with:
19+
java-version: 1.8
20+
- name: Get latest repo
21+
uses: actions/checkout@master
22+
- name: Create local changes
23+
run: java -jar awesome-android-kotlin-apps.main.jar
24+
env:
25+
GITHUB_ACCESS_TOKEN: ${{ secrets.THE_GITHUB_ACCESS_TOKEN }}
26+
- name: Commit files
27+
run: |
28+
git config --local user.email "theapache64-bot@gmail.com"
29+
git config --local user.name "theapache64-bot"
30+
git commit -m "πŸš€ UPDATE README!" -a
31+
- name: Push changes
32+
uses: ad-m/github-push-action@master
33+
with:
34+
github_token: ${{ secrets.THE_GITHUB_ACCESS_TOKEN }}

β€Ž.gitignore

+154-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,154 @@
1-
.DS_Store
2-
desktop.ini
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/kotlin,intellij,gradle
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=kotlin,intellij,gradle
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/artifacts
37+
# .idea/compiler.xml
38+
# .idea/jarRepositories.xml
39+
# .idea/modules.xml
40+
# .idea/*.iml
41+
# .idea/modules
42+
# *.iml
43+
# *.ipr
44+
45+
# CMake
46+
cmake-build-*/
47+
48+
# Mongo Explorer plugin
49+
.idea/**/mongoSettings.xml
50+
51+
# File-based project format
52+
*.iws
53+
54+
# IntelliJ
55+
out/
56+
57+
# mpeltonen/sbt-idea plugin
58+
.idea_modules/
59+
60+
# JIRA plugin
61+
atlassian-ide-plugin.xml
62+
63+
# Cursive Clojure plugin
64+
.idea/replstate.xml
65+
66+
# Crashlytics plugin (for Android Studio and IntelliJ)
67+
com_crashlytics_export_strings.xml
68+
crashlytics.properties
69+
crashlytics-build.properties
70+
fabric.properties
71+
72+
# Editor-based Rest Client
73+
.idea/httpRequests
74+
75+
# Android studio 3.1+ serialized cache file
76+
.idea/caches/build_file_checksums.ser
77+
78+
### Intellij Patch ###
79+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
80+
81+
# *.iml
82+
# modules.xml
83+
# .idea/misc.xml
84+
# *.ipr
85+
86+
# Sonarlint plugin
87+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
88+
.idea/**/sonarlint/
89+
90+
# SonarQube Plugin
91+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
92+
.idea/**/sonarIssues.xml
93+
94+
# Markdown Navigator plugin
95+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
96+
.idea/**/markdown-navigator.xml
97+
.idea/**/markdown-navigator-enh.xml
98+
.idea/**/markdown-navigator/
99+
100+
# Cache file creation bug
101+
# See https://youtrack.jetbrains.com/issue/JBR-2257
102+
.idea/$CACHE_FILE$
103+
104+
# CodeStream plugin
105+
# https://plugins.jetbrains.com/plugin/12206-codestream
106+
.idea/codestream.xml
107+
108+
### Kotlin ###
109+
# Compiled class file
110+
*.class
111+
112+
# Log file
113+
*.log
114+
115+
# BlueJ files
116+
*.ctxt
117+
118+
# Mobile Tools for Java (J2ME)
119+
.mtj.tmp/
120+
121+
# Package Files #
122+
*.jar
123+
*.war
124+
*.nar
125+
*.ear
126+
*.zip
127+
*.tar.gz
128+
*.rar
129+
130+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
131+
hs_err_pid*
132+
133+
### Gradle ###
134+
.gradle
135+
build/
136+
137+
# Ignore Gradle GUI config
138+
gradle-app.setting
139+
140+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
141+
!gradle-wrapper.jar
142+
143+
# Cache of project
144+
.gradletasknamecache
145+
146+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
147+
# gradle/wrapper/gradle-wrapper.properties
148+
149+
### Gradle Patch ###
150+
**/build/
151+
152+
# End of https://www.toptal.com/developers/gitignore/api/kotlin,intellij,gradle
153+
SecretConstants.kt
154+
!awesome-android-kotlin-apps.main.jar
17 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 Byte
Binary file not shown.
18.3 KB
Binary file not shown.
17 Bytes
Binary file not shown.

β€Ž.gradle/6.5/gc.properties

Whitespace-only changes.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Wed Nov 04 19:20:35 IST 2020
2+
gradle.version=6.3
20.4 KB
Binary file not shown.

β€Ž.gradle/checksums/checksums.lock

17 Bytes
Binary file not shown.
23.6 KB
Binary file not shown.

β€Ž.gradle/vcs-1/gc.properties

Whitespace-only changes.

β€Ž.idea/artifacts/awesome_android_kotlin_apps_main_jar.xml

+27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/codeStyles/Project.xml

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/compiler.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/gradle.xml

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/jarRepositories.xml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žcontributing.md renamed to β€ŽCONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66

77
- Explain what the PR fixes or improves.
88

9-
- If your PR aims to add a new app to list, specify the tech stack and explain why is it worth to include.
9+
- 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)
10+
1011

11-
12-
1312
- Use sensible commit messages
1413

1514
- If your PR fixes a separate issue number, include it in the commit message.

β€ŽMETA-INF/MANIFEST.MF

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Main-Class: com.github.aaka.AppKt
3+

0 commit comments

Comments
Β (0)