-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the first release of the Tranquille app (fork of YACB).
- Loading branch information
Showing
746 changed files
with
763 additions
and
7,217 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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# To contribute improvements to CI/CD templates, please follow the Development guide at: | ||
# https://docs.gitlab.com/ee/development/cicd/templates.html | ||
# This specific template is located at: | ||
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android.gitlab-ci.yml | ||
|
||
# Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny | ||
# If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template. | ||
|
||
image: eclipse-temurin:17-jdk-jammy | ||
|
||
variables: | ||
|
||
# ANDROID_COMPILE_SDK is the version of Android you're compiling with. | ||
# It should match compileSdkVersion. | ||
ANDROID_COMPILE_SDK: "34" | ||
|
||
# ANDROID_BUILD_TOOLS is the version of the Android build tools you are using. | ||
# It should match buildToolsVersion. | ||
ANDROID_BUILD_TOOLS: "34.0.0" | ||
|
||
# It's what version of the command line tools we're going to download from the official site. | ||
# Official Site-> https://developer.android.com/studio/index.html | ||
# There, look down below at the cli tools only, sdk tools package is of format: | ||
# commandlinetools-os_type-ANDROID_SDK_TOOLS_latest.zip | ||
# when the script was last modified for latest compileSdkVersion, it was which is written down below | ||
ANDROID_SDK_TOOLS: "11076708" | ||
|
||
# Packages installation before running script | ||
before_script: | ||
- apt-get --quiet update --yes | ||
- apt-get --quiet install --yes wget unzip | ||
|
||
# Setup path as android_home for moving/exporting the downloaded sdk into it | ||
- export ANDROID_HOME="${PWD}/android-sdk-root" | ||
# Create a new directory at specified location | ||
- install -d $ANDROID_HOME | ||
# Here we are installing androidSDK tools from official source, | ||
# (the key thing here is the url from where you are downloading these sdk tool for command line, so please do note this url pattern there and here as well) | ||
# after that unzipping those tools and | ||
# then running a series of SDK manager commands to install necessary android SDK packages that'll allow the app to build | ||
- wget --no-verbose --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip | ||
- unzip -q -d "$ANDROID_HOME/cmdline-tools" "$ANDROID_HOME/cmdline-tools.zip" | ||
- mv -T "$ANDROID_HOME/cmdline-tools/cmdline-tools" "$ANDROID_HOME/cmdline-tools/tools" | ||
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin | ||
|
||
# Nothing fancy here, just checking sdkManager version | ||
- sdkmanager --version | ||
|
||
# use yes to accept all licenses | ||
- yes | sdkmanager --licenses > /dev/null || true | ||
- sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" | ||
- sdkmanager "platform-tools" | ||
- sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" | ||
|
||
# Not necessary, but just for surity | ||
- chmod +x ./gradlew | ||
|
||
# Basic android and gradle stuff | ||
# Check linting | ||
lintDebug: | ||
interruptible: true | ||
stage: build | ||
when: manual | ||
script: | ||
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint | ||
artifacts: | ||
paths: | ||
- app/lint/reports/lint-results-debug.html | ||
expose_as: "lint-report" | ||
when: always | ||
|
||
# Make Project | ||
assembleDebug: | ||
interruptible: true | ||
stage: build | ||
script: | ||
- ./gradlew assembleDebug | ||
artifacts: | ||
paths: | ||
- app/build/outputs/ | ||
|
||
# Run all tests, if any fails, interrupt the pipeline(fail it) | ||
debugTests: | ||
needs: [lintDebug, assembleDebug] | ||
when: manual | ||
interruptible: true | ||
stage: test | ||
script: | ||
- ./gradlew -Pci --console=plain :app:testDebug |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/build | ||
/build |
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,84 @@ | ||
plugins { | ||
alias(libs.plugins.androidApplication) | ||
alias(libs.plugins.jetbrainsKotlinAndroid) | ||
id("org.greenrobot.greendao") | ||
} | ||
|
||
android { | ||
namespace = "fr.vinetos.tranquille" | ||
compileSdk = 34 | ||
|
||
defaultConfig { | ||
applicationId = "fr.vinetos.tranquille" | ||
minSdk = 14 | ||
targetSdk = 34 | ||
versionCode = 1 | ||
versionName = "0.0.1" | ||
multiDexEnabled = true | ||
|
||
javaCompileOptions { | ||
annotationProcessorOptions { | ||
argument("eventBusIndex", "fr.vinetos.tranquille.EventBusIndex") | ||
} | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android-optimize.txt"), | ||
"proguard-rules.pro" | ||
) | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "1.8" | ||
} | ||
|
||
lint { | ||
abortOnError = false | ||
lintConfig = file("lint.xml") | ||
} | ||
|
||
applicationVariants.all { | ||
val variant = this | ||
variant.resValue("string", "app_id", variant.applicationId) | ||
} | ||
} | ||
|
||
greendao { | ||
schemaVersion = 1 | ||
} | ||
|
||
dependencies { | ||
|
||
implementation(libs.androidx.core.ktx) | ||
implementation(libs.androidx.appcompat) | ||
implementation(libs.androidx.preference) | ||
implementation(libs.androidx.work.runtime) | ||
implementation(libs.androidx.recyclerview) | ||
implementation(libs.androidx.recyclerview.selection) | ||
implementation(libs.androidx.paging) | ||
implementation(libs.androidx.multidex) | ||
implementation(libs.google.material) | ||
implementation(libs.slf4j) | ||
implementation(libs.conscrypt) | ||
implementation(libs.okhttp) | ||
implementation(libs.lib.phone.number.info) | ||
implementation(libs.commons.csv) | ||
implementation(libs.greendao) | ||
implementation(libs.eventbus) | ||
|
||
annotationProcessor(libs.eventbus.annotation.processor) | ||
|
||
runtimeOnly(libs.logback) | ||
|
||
testImplementation(libs.junit) | ||
|
||
androidTestImplementation(libs.androidx.junit) | ||
androidTestImplementation(libs.androidx.espresso.core) | ||
} |
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.