forked from CCIP-App/CCIP-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
436 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
# CCIP-Android aka OPass | ||
|
||
This repo is CCIP(Community Checkin with Interactivity Project) Android client, OPass is the app name, you can [download it from Google Play](https://play.google.com/store/apps/details?id=app.opass.ccip). | ||
CCIP (Community Checkin with Interactivity Project) a.k.a OPass, is Taiwan's FLOSS conference check-in | ||
solution and provides newest event information for audience. This repository hosts the source code for | ||
its Android app. OPass helps users to check-in rapidly and provide the newest information about the conference. | ||
|
||
OPass is Taiwan's FLOSS conference check-in solution and provides newest event information for audience. | ||
<a href='https://play.google.com/store/apps/details?id=app.opass.ccip'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' height="20%" width="20%" /></a> | ||
|
||
It has been used in [SITCON (Students' Information Technology Conference)](https://sitcon.org/) & [COSCUP (Conference for Open Source Coders, Users and Promoters)](https://coscup.org/) for so many years. This app will help you check in rapidly and provide the newest information about the conference. | ||
# Usage | ||
|
||
Some of the conferences in which OPass has been in use for the past few years are: | ||
|
||
Patch welcome! | ||
- [SITCON (Students' Information Technology Conference)](https://sitcon.org/) | ||
- [COSCUP (Conference for Open Source Coders, Users and Promoters)](https://coscup.org/) | ||
|
||
## Development | ||
|
||
# [Download From Google Play](https://play.google.com/store/apps/details?id=app.opass.ccip) | ||
- OPass is licensed and distributed under the GNU GENERAL PUBLIC LICENSE v3 | ||
- List of contributors can be viewed on this repository's [contributors graph](https://github.com/CCIP-App/CCIP-Android/graphs/contributors). | ||
|
||
In case you wish to contribute to the development of this project, feel free to open a [Pull Request](https://github.com/CCIP-App/CCIP-Android/pulls) | ||
or an [Issue](https://github.com/CCIP-App/CCIP-Android/issues) for the same. Contributions are always welcome. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
plugins { | ||
id("com.android.application") | ||
id("org.jetbrains.kotlin.android") | ||
id("com.google.gms.google-services") | ||
} | ||
|
||
android { | ||
namespace = "app.opass.ccip" | ||
compileSdk = 34 | ||
|
||
defaultConfig { | ||
applicationId = "app.opass.ccip" | ||
minSdk = 24 | ||
targetSdk = 34 | ||
versionCode = 54 | ||
versionName = "3.4.0" | ||
|
||
manifestPlaceholders["manifestApplicationId"] = "$applicationId" | ||
} | ||
|
||
buildFeatures { | ||
buildConfig = true | ||
viewBinding = true | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android.txt"), | ||
"proguard-rules.pro" | ||
) | ||
} | ||
} | ||
packaging { | ||
resources { | ||
excludes += listOf("META-INF/atomicfu.kotlin_module") | ||
} | ||
} | ||
|
||
|
||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
kotlinOptions { | ||
jvmTarget = JavaVersion.VERSION_17.toString() | ||
} | ||
|
||
lint { | ||
lintConfig = file("lint.xml") | ||
} | ||
|
||
androidResources { | ||
generateLocaleConfig = true | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation("com.google.firebase:firebase-analytics-ktx:21.5.0") | ||
implementation("com.onesignal:OneSignal:[4.0.0, 4.99.99]") | ||
|
||
implementation("androidx.appcompat:appcompat:1.6.1") | ||
implementation("com.google.android.material:material:1.11.0") | ||
implementation("androidx.recyclerview:recyclerview:1.3.2") | ||
implementation("androidx.cardview:cardview:1.0.0") | ||
implementation("androidx.core:core-ktx:1.12.0") | ||
implementation("androidx.fragment:fragment-ktx:1.6.2") | ||
implementation("androidx.viewpager2:viewpager2:1.0.0") | ||
implementation("androidx.constraintlayout:constraintlayout:2.1.4") | ||
implementation("com.google.android.flexbox:flexbox:3.0.0") | ||
implementation("com.google.code.gson:gson:2.10.1") | ||
implementation("com.squareup.okhttp3:okhttp:4.12.0") | ||
implementation("com.squareup.retrofit2:retrofit:2.9.0") | ||
implementation("com.squareup.retrofit2:converter-gson:2.9.0") | ||
|
||
implementation("com.journeyapps:zxing-android-embedded:4.3.0") | ||
|
||
// Coil | ||
implementation("io.coil-kt:coil:2.5.0") | ||
|
||
// Coroutines | ||
val coroutinesVersion = "1.7.3" | ||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion") | ||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion") | ||
|
||
// Lifecycle | ||
val lifecycleVersion = "2.7.0" | ||
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion") | ||
implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion") | ||
|
||
// Markwon | ||
val markwonVersion = "4.6.2" | ||
implementation("io.noties.markwon:core:$markwonVersion") | ||
implementation("io.noties.markwon:linkify:$markwonVersion") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.