Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b502a89 authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

Merge branch 'master' into 1633-import-latest-microg-refactoring

parents f10214ef 44be151f
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -7,3 +7,8 @@ build/
user.gradle
local.properties
.directory
bin/
.project
.classpath
.output/
.settings/

.gitlab-ci.yml

0 → 100644
+37 −0
Original line number Diff line number Diff line
image: "registry.gitlab.e.foundation:5000/e/apps/docker-android-apps-cicd:latest"

stages:
- build

variables:
  GIT_SUBMODULE_STRATEGY: recursive

before_script:
- if [ -d "/srv/userscripts" ]; then cp -R userscripts/* /srv/userscripts ; fi
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- export GRADLE_USER_HOME=$(pwd)/.gradle
- chmod +x ./gradlew

cache:
  key: ${CI_PROJECT_ID}
  paths:
  - .gradle/

build:
  stage: build
  script:
  - echo sdk.dir $ANDROID_HOME > local.properties
  - echo mapbox.key $MAPBOX_KEY >> local.properties
  - echo mapbox.enabled true >> local.properties
  - export TERM=dumb
  - export JAVA_OPTS="-XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx4096m"
  - ./gradlew assemble
  artifacts:
    paths:
    - play-services-core/build/outputs/apk/

.gitmodules

0 → 100644
+20 −0
Original line number Diff line number Diff line
[submodule "extern/UnifiedNlp"]
	path = extern/UnifiedNlp
	url = https://gitlab.e.foundation/e/apps/android_packages_apps_UnifiedNlp
	branch = dev
[submodule "extern/GmsApi"]
	path = extern/GmsApi
	url = https://gitlab.e.foundation/e/apps/GmsApi
	branch = dev
[submodule "extern/Wearable"]
	path = extern/Wearable
	url = https://gitlab.e.foundation/e/apps/Wearable
	branch = dev
[submodule "extern/GmsLib"]
	path = extern/GmsLib
	url = https://gitlab.e.foundation/e/apps/GmsLib
	branch = dev
[submodule "extern/RemoteDroidGuard"]
	path = extern/RemoteDroidGuard
	url = https://gitlab.e.foundation/e/apps/android_packages_apps_RemoteDroidGuard
	branch = dev
Original line number Diff line number Diff line
Subproject commit 47073dd7a2a039593fe556af8f9f33e325febfa7
Subproject commit 0c5c944a54962a4c60cffa44785a36d7251df635

firebase-dynamic-links

0 → 120000
+1 −0
Original line number Diff line number Diff line
extern/GmsLib/firebase-dynamic-links
 No newline at end of file
Loading