Skip to content

Feature/generate apk pipeline #107

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

Open
wants to merge 31 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e8d4f7d
Create generate_apk.yml
DaaniDev Dec 28, 2021
dd84018
Update generate_apk.yml
DaaniDev Dec 28, 2021
67f11fd
Delete generate_apk.yml
DaaniDev Dec 28, 2021
0dd578a
Create generate_apk.yml
DaaniDev Dec 28, 2021
7786c85
Update generate_apk.yml
DaaniDev Dec 28, 2021
27d18b8
Update generate_apk.yml
DaaniDev Dec 28, 2021
69a3c09
Update generate_apk.yml
DaaniDev Dec 28, 2021
d58cba3
Update generate_apk.yml
DaaniDev Dec 28, 2021
88f59f5
Create gradlew
DaaniDev Dec 28, 2021
5010e75
Update gradlew
DaaniDev Dec 28, 2021
4bc26e6
Delete gradlew
DaaniDev Dec 28, 2021
42b8bad
Update generate_apk.yml
DaaniDev Dec 28, 2021
29007aa
Update generate_apk.yml
DaaniDev Dec 28, 2021
5b35fab
Update generate_apk.yml
DaaniDev Dec 28, 2021
a945cf1
Create gradlew
DaaniDev Dec 29, 2021
5f53929
Update gradlew
DaaniDev Dec 29, 2021
093f5ec
Update generate_apk.yml
DaaniDev Dec 29, 2021
07f8b76
Update generate_apk.yml
DaaniDev Dec 29, 2021
a49b345
Create gradle.properties
DaaniDev Dec 29, 2021
bc3b110
Update gradle.properties
DaaniDev Dec 29, 2021
0a67f0b
Delete gradle.properties
DaaniDev Dec 29, 2021
4309f2f
Update generate_apk.yml
DaaniDev Dec 29, 2021
2c8a971
Update generate_apk.yml
DaaniDev Dec 31, 2021
856ae04
Merge branch 'develop' into feature/generate_apk_pipeline
DaaniDev Dec 31, 2021
84559cc
Merge remote-tracking branch 'origin/feature/generate_apk_pipeline' i…
DaaniDev Dec 31, 2021
04a0751
Update generate_apk.yml
DaaniDev Dec 31, 2021
9b8c5e5
renamed github action config file
DaaniDev Dec 31, 2021
cbff3b8
Merge remote-tracking branch 'origin/feature/generate_apk_pipeline' i…
DaaniDev Dec 31, 2021
1fb165c
Update config.yml
DaaniDev Dec 31, 2021
dabf61c
Update config.yml
DaaniDev Dec 31, 2021
98e6e46
Update README.md
DaaniDev Feb 10, 2022
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
24 changes: 24 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

name: Github Actions Pixel
on:
push:
branches:
- 'feature/generate_apk_pipeline'

jobs:

apk:
name: Generate Apk for Internet Module
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Grant Permission to Execute
run: chmod +x gradlew

- name: Build debug APK
run: bash ./gradlew :internet:assembleDebug --stacktrace
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,15 @@ For complete usage in Kotlin and Java clone the project in Android Studio and ru
## Issues
Issues can be reported [here](https://github.com/mmobin789/pixel/issues).

## Known Issues
Due to an issue do not use this inside recyclerview or listview, it will not work as expected we are working on it to fix this issue soon.

## Inspiration
The idea of employing Kotlin Coroutines that drive the working of this library partly came from [Coil](https://github.com/coil-kt).

## Co-Creator
[Malik Dawar](https://github.com/malikdawar)
[Muhammad Danish](https://github.com/DaaniDev)

## License
Copyright 2020 Pixel Contributors
Expand Down