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

Commit 4a867eee authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

Init /e/OS Assistant

parents
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+36 −0
Original line number Diff line number Diff line
# Gradle files
.gradle/
build/
app/release

# Local configuration file (sdk path, etc)
local.properties

# Log/OS Files
*.log

# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.apk
output.json

# IntelliJ
*.iml
.idea/*
!/.idea/copyright
!/.idea/detekt.xml
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json

# Android Profiling
*.hprof

.gitlab-ci.yml

0 → 100644
+25 −0
Original line number Diff line number Diff line
image: "registry.gitlab.e.foundation/e/os/docker-android-apps-cicd:1263-Add_java_17_support"

variables:
  OPEN_WEATHER_MAP_API_KEY: ${DEFAULT_OWM_KEY}

stages:
  - build

before_script:
  - export GRADLE_USER_HOME=$(pwd)/.gradle
  - chmod +x ./gradlew
  - echo "OPEN_WEATHER_MAP_API_KEY=${OPEN_WEATHER_MAP_API_KEY}" >> ./local.properties

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

build:
  stage: build
  script:
    - ./gradlew build # builds both debug and release
  artifacts:
    paths:
      - app/build/outputs/apk
+7 −0
Original line number Diff line number Diff line
<component name="CopyrightManager">
  <copyright>
    <option name="notice" value="Copyright (C) &amp;#36;today.year e Foundation&#10;&#10;This program is free software: you can redistribute it and/or modify&#10;it under the terms of the GNU General Public License as published by&#10;the Free Software Foundation, either version 3 of the License, or&#10;(at your option) any later version.&#10;&#10;This program is distributed in the hope that it will be useful,&#10;but WITHOUT ANY WARRANTY; without even the implied warranty of&#10;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the&#10;GNU General Public License for more details.&#10;&#10;You should have received a copy of the GNU General Public License&#10;along with this program.  If not, see &lt;https://www.gnu.org/licenses/&gt;." />
    <option name="myName" value="GPLv3" />
  </copyright>
</component>
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
<component name="CopyrightManager">
  <settings default="GPLv3" />
</component>
 No newline at end of file

.idea/detekt.xml

0 → 100644
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="DetektPluginSettings">
    <option name="baselinePath" value="$PROJECT_DIR$/app/detekt-baseline.xml" />
    <option name="configurationFiles">
      <list>
        <option value="$PROJECT_DIR$/detekt.yml" />
      </list>
    </option>
    <option name="enableDetekt" value="true" />
  </component>
</project>
 No newline at end of file