Repo Created

This commit is contained in:
Fr4nz D13trich 2025-11-15 17:44:12 +01:00
parent eb305e2886
commit a8c22c65db
4784 changed files with 329907 additions and 2 deletions

View file

@ -0,0 +1,84 @@
/*
* Copyright 2013-2019 microG Project Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
dependencies {
implementation project(':play-services-maps')
implementation project(':play-services-base-core')
implementation project(':play-services-location')
implementation("org.maplibre.gl:android-sdk:10.2.0")
implementation("org.maplibre.gl:android-plugin-annotation-v9:2.0.1") {
exclude group: 'com.google.android.gms'
}
implementation 'org.maplibre.gl:android-sdk-turf:5.9.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
}
def execResult(...args) {
def stdout = new ByteArrayOutputStream()
exec {
commandLine args
standardOutput = stdout
}
return stdout.toString().trim()
}
android {
namespace "org.microg.gms.maps.mapbox"
compileSdkVersion androidCompileSdk
buildToolsVersion "$androidBuildVersionTools"
buildFeatures {
buildConfig = true
}
defaultConfig {
versionName version
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
buildConfigField "String", "MAPBOX_KEY", "\"${localProperties.getProperty("mapbox.key", System.getenv('MAPBOX_VECTOR_TILES_KEY') ?: "")}\""
buildConfigField "String", "STADIA_KEY", "\"${localProperties.getProperty("stadia.key", System.getenv('STADIA_API_KEY') ?: "")}\""
ndk {
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'GradleCompatible'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = 1.8
}
}
if (file('user.gradle').exists()) {
apply from: 'user.gradle'
}

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2013-2019 microG Project Team
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-sdk tools:overrideLibrary="com.mapbox.mapboxsdk, com.mapbox.mapboxsdk.plugins.annotation" />
<application />
</manifest>

View file

@ -0,0 +1,3 @@

Roboto Bold 10240-10495

View file

@ -0,0 +1,3 @@

Roboto Bold 10496-10751

View file

@ -0,0 +1,3 @@

Roboto Bold 10752-11007

View file

@ -0,0 +1,3 @@

Roboto Bold 11008-11263

View file

@ -0,0 +1,3 @@

Roboto Bold 11264-11519

View file

@ -0,0 +1,3 @@

Roboto Bold 11520-11775

View file

@ -0,0 +1,3 @@

Roboto Bold 11776-12031

View file

@ -0,0 +1,3 @@

Roboto Bold 12032-12287

View file

@ -0,0 +1,3 @@

Roboto Bold 12288-12543

View file

@ -0,0 +1,3 @@

Roboto Bold 12544-12799

View file

@ -0,0 +1,3 @@

Roboto Bold 12800-13055

View file

@ -0,0 +1,3 @@

Roboto Bold 13056-13311

View file

@ -0,0 +1,3 @@

Roboto Bold 13312-13567

View file

@ -0,0 +1,3 @@

Roboto Bold 13568-13823

View file

@ -0,0 +1,3 @@

Roboto Bold 13824-14079

View file

@ -0,0 +1,3 @@

Roboto Bold 14080-14335

View file

@ -0,0 +1,3 @@

Roboto Bold 14336-14591

View file

@ -0,0 +1,3 @@

Roboto Bold 14592-14847

View file

@ -0,0 +1,3 @@

Roboto Bold 14848-15103

View file

@ -0,0 +1,3 @@

Roboto Bold 15104-15359

View file

@ -0,0 +1,3 @@

Roboto Bold 1536-1791

View file

@ -0,0 +1,3 @@

Roboto Bold 15360-15615

View file

@ -0,0 +1,3 @@

Roboto Bold 15616-15871

View file

@ -0,0 +1,3 @@

Roboto Bold 15872-16127

View file

@ -0,0 +1,3 @@

Roboto Bold 16128-16383

View file

@ -0,0 +1,3 @@

Roboto Bold 16384-16639

View file

@ -0,0 +1,3 @@

Roboto Bold 16640-16895

View file

@ -0,0 +1,3 @@

Roboto Bold 16896-17151

View file

@ -0,0 +1,3 @@

Roboto Bold 17152-17407

View file

@ -0,0 +1,3 @@

Roboto Bold 17408-17663

View file

@ -0,0 +1,3 @@

Roboto Bold 17664-17919

View file

@ -0,0 +1,3 @@

Roboto Bold 1792-2047

View file

@ -0,0 +1,3 @@

Roboto Bold 17920-18175

View file

@ -0,0 +1,3 @@

Roboto Bold 18176-18431

View file

@ -0,0 +1,3 @@

Roboto Bold 18432-18687

View file

@ -0,0 +1,3 @@

Roboto Bold 18688-18943

View file

@ -0,0 +1,3 @@

Roboto Bold 18944-19199

View file

@ -0,0 +1,3 @@

Roboto Bold 19200-19455

View file

@ -0,0 +1,3 @@

Roboto Bold 19456-19711

View file

@ -0,0 +1,3 @@

Roboto Bold 19712-19967

View file

@ -0,0 +1,3 @@

Roboto Bold 19968-20223

View file

@ -0,0 +1,3 @@

Roboto Bold 20224-20479

View file

@ -0,0 +1,3 @@

Roboto Bold 2048-2303

View file

@ -0,0 +1,3 @@

Roboto Bold 20480-20735

View file

@ -0,0 +1,3 @@

Roboto Bold 20736-20991

View file

@ -0,0 +1,3 @@

Roboto Bold 20992-21247

View file

@ -0,0 +1,3 @@

Roboto Bold 21248-21503

View file

@ -0,0 +1,3 @@

Roboto Bold 21504-21759

View file

@ -0,0 +1,3 @@

Roboto Bold 21760-22015

View file

@ -0,0 +1,3 @@

Roboto Bold 22016-22271

View file

@ -0,0 +1,3 @@

Roboto Bold 22272-22527

View file

@ -0,0 +1,3 @@

Roboto Bold 22528-22783

View file

@ -0,0 +1,3 @@

Roboto Bold 22784-23039

View file

@ -0,0 +1,3 @@

Roboto Bold 2304-2559

View file

@ -0,0 +1,3 @@

Roboto Bold 23040-23295

View file

@ -0,0 +1,3 @@

Roboto Bold 23296-23551

View file

@ -0,0 +1,3 @@

Roboto Bold 23552-23807

View file

@ -0,0 +1,3 @@

Roboto Bold 23808-24063

View file

@ -0,0 +1,3 @@

Roboto Bold 24064-24319

View file

@ -0,0 +1,3 @@

Roboto Bold 24320-24575

View file

@ -0,0 +1,3 @@

Roboto Bold 24576-24831

View file

@ -0,0 +1,3 @@

Roboto Bold 24832-25087

View file

@ -0,0 +1,3 @@

Roboto Bold 25088-25343

View file

@ -0,0 +1,3 @@

Roboto Bold 25344-25599

View file

@ -0,0 +1,3 @@

Roboto Bold 2560-2815

View file

@ -0,0 +1,3 @@

Roboto Bold 25600-25855

View file

@ -0,0 +1,3 @@

Roboto Bold 25856-26111

View file

@ -0,0 +1,3 @@

Roboto Bold 26112-26367

View file

@ -0,0 +1,3 @@

Roboto Bold 26368-26623

View file

@ -0,0 +1,3 @@

Roboto Bold 26624-26879

View file

@ -0,0 +1,3 @@

Roboto Bold 26880-27135

View file

@ -0,0 +1,3 @@

Roboto Bold 27136-27391

View file

@ -0,0 +1,3 @@

Roboto Bold 27392-27647

View file

@ -0,0 +1,3 @@

Roboto Bold 27648-27903

View file

@ -0,0 +1,3 @@

Roboto Bold 27904-28159

View file

@ -0,0 +1,3 @@

Roboto Bold 2816-3071

View file

@ -0,0 +1,3 @@

Roboto Bold 28160-28415

View file

@ -0,0 +1,3 @@

Roboto Bold 28416-28671

View file

@ -0,0 +1,3 @@

Roboto Bold 28672-28927

View file

@ -0,0 +1,3 @@

Roboto Bold 28928-29183

View file

@ -0,0 +1,3 @@

Roboto Bold 29184-29439

View file

@ -0,0 +1,3 @@

Roboto Bold 29440-29695

View file

@ -0,0 +1,3 @@

Roboto Bold 29696-29951

View file

@ -0,0 +1,3 @@

Roboto Bold 29952-30207

View file

@ -0,0 +1,3 @@

Roboto Bold 30208-30463

View file

@ -0,0 +1,3 @@

Roboto Bold 30464-30719

View file

@ -0,0 +1,3 @@

Roboto Bold 3072-3327

View file

@ -0,0 +1,3 @@

Roboto Bold 30720-30975

View file

@ -0,0 +1,3 @@

Roboto Bold 30976-31231

View file

@ -0,0 +1,3 @@

Roboto Bold 31232-31487

View file

@ -0,0 +1,3 @@

Roboto Bold 31488-31743

View file

@ -0,0 +1,3 @@

Roboto Bold 31744-31999

View file

@ -0,0 +1,3 @@

Roboto Bold 32000-32255

Some files were not shown because too many files have changed in this diff Show more