初始化
37
.gitignore
vendored
@ -1,23 +1,20 @@
|
|||||||
# Compiled class file
|
*.iml
|
||||||
*.class
|
.gradle
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
||||||
|
.externalNativeBuild
|
||||||
|
.cxx
|
||||||
|
local.properties
|
||||||
|
|
||||||
# Log file
|
*.idea
|
||||||
*.log
|
app/build
|
||||||
|
jiguang/.idea
|
||||||
|
|
||||||
# BlueJ files
|
/app/qa/
|
||||||
*.ctxt
|
*.apk
|
||||||
|
/app/product
|
||||||
|
/app/release
|
||||||
|
/app/staging
|
||||||
|
/**/*.apk
|
||||||
|
|
||||||
# Mobile Tools for Java (J2ME)
|
|
||||||
.mtj.tmp/
|
|
||||||
|
|
||||||
# Package Files #
|
|
||||||
*.jar
|
|
||||||
*.war
|
|
||||||
*.nar
|
|
||||||
*.ear
|
|
||||||
*.zip
|
|
||||||
*.tar.gz
|
|
||||||
*.rar
|
|
||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
||||||
hs_err_pid*
|
|
||||||
|
1
app/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
289
app/build.gradle
Normal file
@ -0,0 +1,289 @@
|
|||||||
|
plugins {
|
||||||
|
id 'com.android.application'
|
||||||
|
id 'kotlin-android'
|
||||||
|
id 'kotlin-kapt'
|
||||||
|
id 'com.huawei.agconnect'
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 30
|
||||||
|
buildToolsVersion "30.0.3"
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
config {
|
||||||
|
keyAlias 'key0'
|
||||||
|
keyPassword '123456'
|
||||||
|
storeFile file('key.jks')
|
||||||
|
storePassword '123456'
|
||||||
|
}
|
||||||
|
debug {
|
||||||
|
keyAlias 'key0'
|
||||||
|
keyPassword '123456'
|
||||||
|
storeFile file('key.jks')
|
||||||
|
storePassword '123456'
|
||||||
|
}
|
||||||
|
release {
|
||||||
|
keyAlias 'key0'
|
||||||
|
keyPassword '123456'
|
||||||
|
storeFile file('key.jks')
|
||||||
|
storePassword '123456'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId "com.arpa.hndahesudintocctmsdriver"
|
||||||
|
minSdkVersion 22
|
||||||
|
targetSdkVersion 30
|
||||||
|
versionCode 49
|
||||||
|
versionName "3.1.9"
|
||||||
|
flavorDimensions "environment"
|
||||||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
javaCompileOptions {
|
||||||
|
|
||||||
|
annotationProcessorOptions {
|
||||||
|
includeCompileClasspath = true
|
||||||
|
arguments = [moduleName :project.getName() ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ndk {
|
||||||
|
|
||||||
|
//选择要添加的对应 cpu 类型的 .so 库。
|
||||||
|
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a'
|
||||||
|
// 还可以添加 'x86', 'x86_64', 'mips', 'mips64'
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
manifestPlaceholders = [
|
||||||
|
JPUSH_PKGNAME : applicationId,
|
||||||
|
JPUSH_APPKEY : "571d93ae5117da6dee848c92", //JPush 上注册的包名对应的 Appkey.
|
||||||
|
JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可.
|
||||||
|
MEIZU_APPKEY : "MZ-魅族的APPKEY",
|
||||||
|
MEIZU_APPID : "MZ-魅族的APPID",
|
||||||
|
XIAOMI_APPID : "MI-小米的APPID",
|
||||||
|
XIAOMI_APPKEY : "MI-小米的APPKEY",
|
||||||
|
OPPO_APPKEY : "OP-oppo的APPKEY",
|
||||||
|
OPPO_APPID : "OP-oppo的APPID",
|
||||||
|
OPPO_APPSECRET : "OP-oppo的APPSECRET",
|
||||||
|
VIVO_APPKEY : "vivo的APPKEY",
|
||||||
|
VIVO_APPID : "vivo的APPID"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
// sourceSets {
|
||||||
|
// main {
|
||||||
|
// jniLibs.srcDir 'libs'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
jniLibs.srcDirs = ['libs']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
}
|
||||||
|
debug {
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = '1.8'
|
||||||
|
}
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
maven { url "https://jitpack.io" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories{
|
||||||
|
flatDir {
|
||||||
|
dirs 'libs'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
productFlavors {
|
||||||
|
qa {
|
||||||
|
buildConfigField("String", "OPEN_API_URL", "\"http://192.168.111.244:4009\"")
|
||||||
|
}
|
||||||
|
staging {
|
||||||
|
buildConfigField("String", "OPEN_API_URL", "\"https://oapi-staging.alct56.com\"")
|
||||||
|
}
|
||||||
|
product {
|
||||||
|
buildConfigField("String", "OPEN_API_URL", "\"https://oapi.alct56.com\"")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
android.applicationVariants.all { variant ->
|
||||||
|
variant.outputs.all {
|
||||||
|
def date = new Date().format("MMdd_HH-mm" , TimeZone.getTimeZone("GMT+08"))
|
||||||
|
if(variant.buildType.name.equals('release')){
|
||||||
|
outputFileName = "dhhy-driver-"+date+"-${versionName}.apk"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lintOptions {
|
||||||
|
abortOnError false
|
||||||
|
}
|
||||||
|
dexOptions {
|
||||||
|
preDexLibraries false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
//implementation fileTree(include: ['*.jar','*.aar'], dir: 'libs')
|
||||||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||||
|
implementation 'androidx.core:core-ktx:1.3.1'
|
||||||
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||||
|
implementation 'com.google.android.material:material:1.2.1'
|
||||||
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
||||||
|
implementation 'com.caverock:androidsvg-aar:1.3'
|
||||||
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
||||||
|
// implementation files('libs\\AMap3DMap_5.8.0_AMapNavi_5.6.0_20191014.jar')
|
||||||
|
// implementation project(path: ':ocr_ui')
|
||||||
|
|
||||||
|
//implementation files('libs\\AMap3DMap_5.8.0_AMapNavi_5.6.0_20191014.jar')
|
||||||
|
kapt 'com.android.databinding:compiler:2.3.2'
|
||||||
|
//noinspection GradleCompatible,GradleCompatible
|
||||||
|
//implemention 'com.android.support:design:25.3.1'
|
||||||
|
//implementation files('libs\\BaiduLBS_Android.jar')
|
||||||
|
//当引入的与之前引入的库有重复冲突部分的时候,使用compileOnly
|
||||||
|
implementation files('libs\\mdp_sdk.jar')
|
||||||
|
compileOnly files('libs\\gson-2.8.0.jar')
|
||||||
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
||||||
|
implementation 'com.squareup.okhttp3:okhttp:3.2.0'
|
||||||
|
implementation 'com.jakewharton:butterknife:10.2.1'
|
||||||
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
|
||||||
|
implementation 'id.zelory:compressor:1.0.3'
|
||||||
|
implementation 'top.zibin:Luban:1.1.3'
|
||||||
|
implementation 'com.haozhang.libary:android-slanted-textview:1.2'
|
||||||
|
//
|
||||||
|
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.1'
|
||||||
|
implementation 'com.scwang.smart:refresh-header-material:2.0.1'
|
||||||
|
implementation 'com.scwang.smart:refresh-footer-ball:2.0.1' //球脉冲加载
|
||||||
|
implementation 'com.scwang.smart:refresh-footer-classics:2.0.1' //经典加载
|
||||||
|
//更新版本
|
||||||
|
implementation 'com.github.jenly1314.AppUpdater:app-updater:1.1.0'
|
||||||
|
implementation 'com.github.jenly1314.AppUpdater:app-dialog:1.1.0'
|
||||||
|
//轮播插件
|
||||||
|
implementation 'com.github.zhpanvip:BannerViewPager:3.5.4'
|
||||||
|
//
|
||||||
|
implementation 'com.lxj:xpopup:2.2.8'
|
||||||
|
//工具类
|
||||||
|
//implementation 'cn.hutool:hutool-all:5.7.11'
|
||||||
|
//交通厅
|
||||||
|
implementation 'com.lzy.net:okgo:3.0.4'
|
||||||
|
implementation 'com.alibaba:fastjson:1.2.61'
|
||||||
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.55'
|
||||||
|
//org.bouncycastle:bcprov-jdk15to18
|
||||||
|
//compileOnly 'org.bouncycastle:bcprov-jdk15to18:1.64'
|
||||||
|
implementation 'org.apache.commons:commons-lang3:3.5'
|
||||||
|
implementation (name:'locationgd-androidx_2.1.0', ext:'aar')//交通厅
|
||||||
|
// implementation 'com.amap.api:location:latest.integration'
|
||||||
|
//implementation files('libs\\AMap_Location_V5.4.0_20210723.jar')
|
||||||
|
//安联
|
||||||
|
implementation 'com.google.code.gson:gson:2.8.6'
|
||||||
|
implementation 'com.loopj.android:android-async-http:1.4.9'
|
||||||
|
implementation 'com.j256.ormlite:ormlite-android:4.48'
|
||||||
|
implementation 'com.j256.ormlite:ormlite-core:4.48'
|
||||||
|
compileOnly 'com.github.hotchemi:permissionsdispatcher:2.3.1'
|
||||||
|
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.3.1'
|
||||||
|
//极光认证
|
||||||
|
implementation 'cn.jiguang.sdk:jverification:2.7.1' // 此处以2.7.1 版本为例。a
|
||||||
|
implementation 'cn.jiguang.sdk:jpush:4.2.4' // 此处以JPush 4.2.4 版本为例。
|
||||||
|
implementation 'cn.jiguang.sdk:jcore:2.9.0' // 此处以JCore 2.9.0 版本为例。
|
||||||
|
// 接入华为厂商
|
||||||
|
implementation 'com.huawei.hms:push:4.0.2.300'
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:huawei:4.0.0'// 极光厂商插件版本与接入 JPush 版本保持一致,下同
|
||||||
|
// 接入 FCM 厂商
|
||||||
|
implementation 'com.google.firebase:firebase-messaging:21.0.1'
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:fcm:4.0.0'
|
||||||
|
// 接入魅族厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:meizu:4.0.0'
|
||||||
|
// 接入 VIVO 厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:vivo:4.0.0'
|
||||||
|
// 接入 OPPO 厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:oppo:4.0.0'
|
||||||
|
// 接入小米厂商
|
||||||
|
implementation 'cn.jiguang.sdk.plugin:xiaomi:4.0.0'
|
||||||
|
//友盟
|
||||||
|
// 下面各SDK根据宿主App是否使用相关业务按需引入。
|
||||||
|
// 友盟统计SDK
|
||||||
|
implementation 'com.umeng.umsdk:common:9.4.2'// 必选
|
||||||
|
implementation 'com.umeng.umsdk:asms:1.4.1'// 必选
|
||||||
|
implementation 'com.umeng.umsdk:apm:1.4.2' // 错误分析升级为独立SDK,看crash数据请一定集成,可选
|
||||||
|
implementation 'com.umeng.umsdk:abtest:1.0.0'//使用U-App中ABTest能力,可选
|
||||||
|
//动态权限获取
|
||||||
|
implementation "org.permissionsdispatcher:permissionsdispatcher:4.6.0"
|
||||||
|
kapt "org.permissionsdispatcher:permissionsdispatcher-processor:4.6.0"
|
||||||
|
//选择器
|
||||||
|
implementation 'com.github.gzu-liyujiang.AndroidPicker:WheelPicker:3.1.1'
|
||||||
|
//EventBus
|
||||||
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
||||||
|
//易签宝
|
||||||
|
implementation(name:'EsignSDK', ext:'aar')
|
||||||
|
implementation'pub.devrel:easypermissions:1.3.0'
|
||||||
|
|
||||||
|
implementation "com.squareup.retrofit2:retrofit:2.4.0"
|
||||||
|
implementation "com.squareup.retrofit2:converter-gson:2.4.0"
|
||||||
|
implementation "com.squareup.retrofit2:adapter-rxjava2:2.4.0"
|
||||||
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'
|
||||||
|
|
||||||
|
implementation "io.reactivex.rxjava2:rxjava:2.1.5"
|
||||||
|
implementation "io.reactivex.rxjava2:rxandroid:2.0.1"
|
||||||
|
|
||||||
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
||||||
|
implementation 'com.github.barteksc:android-pdf-viewer:3.2.0-beta.1'
|
||||||
|
//
|
||||||
|
testImplementation 'junit:junit:4.+'
|
||||||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
||||||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
|
//工具类
|
||||||
|
//implementation 'cn.hutool:hutool-all:5.7.11'
|
||||||
|
//ArcGis For Android工具库(API:100.1以上版本)
|
||||||
|
implementation 'com.github.qingmei2:SlideBottomLayout-Android:1.2.3'
|
||||||
|
implementation 'com.flipboard:bottomsheet-core:1.5.3'
|
||||||
|
implementation 'com.flipboard:bottomsheet-commons:1.5.3' //可选
|
||||||
|
implementation 'com.github.getActivity:XToast:8.2'
|
||||||
|
//阿里云视频播放
|
||||||
|
// implementation 'com.aliyun.sdk.android:AliyunPlayer:5.4.0-part'
|
||||||
|
// implementation 'com.aliyun.video.android:svideostandard:3.25.+'//短视频标准版SDK必须依赖
|
||||||
|
// implementation 'com.aliyun.video.android:core:1.2.2' //核心库必须依赖
|
||||||
|
// implementation 'com.alivc.conan:AlivcConan:1.0.3'//核心库必须依赖
|
||||||
|
// //AlivcFFmpeg必须依赖,且版本需要在4.3.0及以上,在以下两个版本中选择一个版本进行依赖。
|
||||||
|
// implementation 'com.aliyun.video.android:AlivcFFmpeg:4.3.0' //短视频与播放器共用。两个SDK同时接入时,请用该版本。
|
||||||
|
// implementation 'com.aliyun.video.android:upload:1.6.0'// 上传库,如不需要上传可不依赖
|
||||||
|
//
|
||||||
|
//implementation 'com.amap.api:navi-3dmap:8.1.0_3dmap8.1.0'
|
||||||
|
//ocr
|
||||||
|
//implementation (name:'ocrsdk.aar', ext:'aar')
|
||||||
|
//implementation 'com.github.xuexiangjys:XVideo:1.0.2'
|
||||||
|
|
||||||
|
implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.2.9'
|
||||||
|
implementation 'com.youth.banner:banner:1.4.10'
|
||||||
|
|
||||||
|
// implementation 'com.amap.api:3dmap:latest.integration'
|
||||||
|
// implementation 'com.amap.api:search:latest.integration'
|
||||||
|
|
||||||
|
implementation 'com.amap.api:3dmap:8.0.0'
|
||||||
|
implementation 'com.amap.api:location:5.5.1'
|
||||||
|
implementation 'com.amap.api:search:7.9.0'
|
||||||
|
|
||||||
|
//定位功能
|
||||||
|
// implementation 'com.amap.api:location:latest.integration'
|
||||||
|
// //搜索功能
|
||||||
|
// implementation 'com.amap.api:search:latest.integration'
|
||||||
|
//导航
|
||||||
|
// implementation 'com.amap.api:navi-3dmap:latest.integration'
|
||||||
|
|
||||||
|
// implementation 'com.amap.api:3dmap:latest.integration'
|
||||||
|
|
||||||
|
}
|
BIN
app/key.jks
Normal file
BIN
app/libs/EsignSDK.aar
Normal file
BIN
app/libs/arm64-v8a/libBaiduMapSDK_base_v5_1_0.so
Normal file
BIN
app/libs/arm64-v8a/libBaiduMapSDK_map_v5_1_0.so
Normal file
BIN
app/libs/arm64-v8a/libindoor.so
Normal file
BIN
app/libs/arm64-v8a/liblocSDK7b.so
Normal file
BIN
app/libs/armeabi-v7a/libBaiduMapSDK_base_v5_1_0.so
Normal file
BIN
app/libs/armeabi-v7a/libBaiduMapSDK_map_v5_1_0.so
Normal file
BIN
app/libs/armeabi-v7a/libindoor.so
Normal file
BIN
app/libs/armeabi-v7a/liblocSDK7b.so
Normal file
BIN
app/libs/armeabi/libBaiduMapSDK_base_v5_1_0.so
Normal file
BIN
app/libs/armeabi/libBaiduMapSDK_map_v5_1_0.so
Normal file
BIN
app/libs/armeabi/libindoor.so
Normal file
BIN
app/libs/armeabi/liblocSDK7b.so
Normal file
BIN
app/libs/gson-2.8.0.jar
Normal file
BIN
app/libs/locationgd-androidx_2.1.0.aar
Normal file
BIN
app/libs/mdp_sdk.jar
Normal file
25
app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Add project specific ProGuard rules here.
|
||||||
|
# You can control the set of applied configuration files using the
|
||||||
|
# proguardFiles setting in build.gradle.
|
||||||
|
#
|
||||||
|
# For more details, see
|
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following
|
||||||
|
# and specify the fully qualified class name to the JavaScript interface
|
||||||
|
# class:
|
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
|
# public *;
|
||||||
|
#}
|
||||||
|
|
||||||
|
# Uncomment this to preserve the line number information for
|
||||||
|
# debugging stack traces.
|
||||||
|
#-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
# If you keep the line number information, uncomment this to
|
||||||
|
# hide the original source file name.
|
||||||
|
#-renamesourcefileattribute SourceFile
|
||||||
|
-keep class com.baidu.** {*;}
|
||||||
|
-keep class vi.com.** {*;}
|
||||||
|
-keep class com.baidu.vi.** {*;}
|
||||||
|
-dontwarn com.baidu.**
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.arpa.hndahesudintocctmsdriver
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
fun useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||||
|
assertEquals("com.one.clouds.wangluohuoyun", appContext.packageName)
|
||||||
|
}
|
||||||
|
}
|
359
app/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,359 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
package="com.arpa.hndahesudintocctmsdriver">
|
||||||
|
<!-- 白名单 -->
|
||||||
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
||||||
|
<!-- 基础权限 -->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||||
|
<!-- 录音 -->
|
||||||
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
|
<!--播音-->
|
||||||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||||
|
<!-- 极光 -->
|
||||||
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||||
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
||||||
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
<!-- Required -->
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
|
||||||
|
|
||||||
|
<!-- Optional -->
|
||||||
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
|
||||||
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
||||||
|
<uses-permission android:name="android.permission.VIBRATE" />
|
||||||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
|
<!-- 写外置存储。如果开发者使用了离线地图,并且数据写在外置存储区域,则需要申请该权限 -->
|
||||||
|
<!--高德-->
|
||||||
|
<!--如果设置了target >= 28 如果需要启动后台定位则必须声明这个权限-->
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<!--如果您的应用需要后台定位权限,且有可能运行在Android Q设备上,并且设置了target>28,必须增加这个权限声明-->
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.EACCES" />
|
||||||
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||||
|
|
||||||
|
<uses-feature
|
||||||
|
android:name="android.hardware.nfc"
|
||||||
|
android:required="true" />
|
||||||
|
<uses-permission android:name="android.permission.NFC" />
|
||||||
|
<application
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.App"
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:excludeFromRecents="true"
|
||||||
|
android:icon="@drawable/diver_logo"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:largeHeap="true"
|
||||||
|
android:requestLegacyExternalStorage="true"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:theme="@style/AppTheme"
|
||||||
|
android:usesCleartextTraffic="true"
|
||||||
|
tools:replace="android:icon">
|
||||||
|
|
||||||
|
<uses-library
|
||||||
|
android:name="com/alct/mdp"
|
||||||
|
android:required="false" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.MainActivity"
|
||||||
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
||||||
|
android:exported="true"
|
||||||
|
android:launchMode="singleTop"
|
||||||
|
android:screenOrientation="portrait" ></activity>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.wallet.WithdrawalActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.wallet.UpBankActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.OrderAllActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.news.NewsActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.my.SetupActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.PersonalAuthActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.PhotoCarActivity"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.VehicleAuthActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.shangchuan.ShangChuangImgActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.nfc.action.TAG_DISCOVERED" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
|
||||||
|
<data android:mimeType="*/*" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.shangchuan.GetShangChuanActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.AuthQualificationActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.OrderListActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.HuoYunDelActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.business.BusinessActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.CertificatesActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.auth.AddCarSuccActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.login.LoginActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.login.WelcomeActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
<!--<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
<category android:name="android.intent.category.BROWSABLE" />-->
|
||||||
|
<!--<data android:scheme="um.60fbfe87ff4d74541c81e01a" />-->
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
<activity android:name="com.arpa.hndahesudintocctmsdriver.ui.test.TestsActivity">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.drivercircle.DriverCircleActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.drivercircle.VideoReleaseActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.shangchuan.WebPDFActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.StartYunDanActivity"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.drivercircle.HomePageActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.alert.VehicleChoiceActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.home.shangchuan.OrderComplaintActivity"
|
||||||
|
android:screenOrientation="portrait"/>
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.web.WebActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
||||||
|
<activity
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.ui.web.WebKfActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
||||||
|
<activity android:name="com.arpa.hndahesudintocctmsdriver.ui.test.TestAcivity" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".ui.news.NewActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.service.TrackService"
|
||||||
|
android:foregroundServiceType="location" />
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.service.JTTSendService"
|
||||||
|
android:foregroundServiceType="location" />
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.service.MakeUpAlService"
|
||||||
|
android:foregroundServiceType="location" />
|
||||||
|
|
||||||
|
<service android:name="com.arpa.hndahesudintocctmsdriver.service.MakeUpService" />
|
||||||
|
<!-- 安联 -->
|
||||||
|
<service
|
||||||
|
android:name="com.alct.mdp.MDPLocationService"
|
||||||
|
android:exported="true"
|
||||||
|
android:process=":mdpLocation_v1" />
|
||||||
|
<service
|
||||||
|
android:name="com.baidu.location.f"
|
||||||
|
android:enabled="true"
|
||||||
|
android:process=":remote"></service>
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.service.PlayerMusicService"
|
||||||
|
android:exported="true"
|
||||||
|
android:process=":music_v1" />
|
||||||
|
<service
|
||||||
|
android:name="com.alct.mdp.job.LocationUploadJobService"
|
||||||
|
android:permission="android.permission.BIND_JOB_SERVICE"></service>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.alct.mdp.job.LogUploadJobService"
|
||||||
|
android:permission="android.permission.BIND_JOB_SERVICE"></service>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.alct.mdp.job.AppRunningStatusUploadJobService"
|
||||||
|
android:permission="android.permission.BIND_JOB_SERVICE"></service>
|
||||||
|
<!--高德地图-->
|
||||||
|
<meta-data
|
||||||
|
android:name="com.amap.api.v2.apikey"
|
||||||
|
android:value="78019612271411eca3af34db91930620" />
|
||||||
|
<!-- android:value="702eaa84675618b8eb69298d9fd42ca3" />-->
|
||||||
|
|
||||||
|
<service android:name="com.amap.api.location.APSService"></service>
|
||||||
|
|
||||||
|
<!--百度地图-->
|
||||||
|
<meta-data
|
||||||
|
android:name="com.baidu.lbsapi.API_KEY"
|
||||||
|
android:value="Dnrf1Ed65IGG0NF3YAjc8WEMysNYEs19" />
|
||||||
|
<!-- 极光-->
|
||||||
|
<meta-data
|
||||||
|
android:name="JPUSH_APPKEY"
|
||||||
|
android:value="571d93ae5117da6dee848c92" /> <!-- </>值来自开发者平台取得的AppKey -->
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="JPUSH_CHANNEL"
|
||||||
|
android:value="developer-default" />
|
||||||
|
|
||||||
|
<!--创建数据库文件名称-->
|
||||||
|
<meta-data
|
||||||
|
android:name="DATABASE"
|
||||||
|
android:value="sixspread.db" />
|
||||||
|
<!--创建数据库版本号-->
|
||||||
|
<meta-data
|
||||||
|
android:name="VERSION"
|
||||||
|
android:value="3" />
|
||||||
|
<!--是否运行记录日志-->
|
||||||
|
<meta-data
|
||||||
|
android:name="QUERY_LOG"
|
||||||
|
android:value="true" />
|
||||||
|
<!--table对应Bean所在包路径-->
|
||||||
|
<meta-data
|
||||||
|
android:name="DOMAIN_PACKAGE_NAME"
|
||||||
|
android:value="com.baifenzhiliu.sixspread.entity" />
|
||||||
|
|
||||||
|
<!-- 易签宝 -->
|
||||||
|
<activity
|
||||||
|
android:name="com.esign.esignsdk.h5.H5Activity"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
|
||||||
|
<data
|
||||||
|
android:host="facesdk"
|
||||||
|
android:scheme="esign" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- 若您的业务中有使用极光富媒体功能,或者极光早上好功能,需要把此 Activity 的 exported 修改成 true 覆盖 mavenCentral 上的组件。 -->
|
||||||
|
<activity
|
||||||
|
android:name="cn.jpush.android.ui.PopWinActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:theme="@style/MyDialogStyle"
|
||||||
|
tools:node="replace">
|
||||||
|
<intent-filter>
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<action android:name="cn.jpush.android.ui.PopWinActivity" />
|
||||||
|
<category android:name="com.oneclouds.wangluohuoyun" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- 若您的业务中有使用极光富媒体功能,或者极光早上好功能,需要把此 Activity 的 exported 修改成 true 覆盖 mavenCentral 上的组件。 -->
|
||||||
|
<activity
|
||||||
|
android:name="cn.jpush.android.ui.PushActivity"
|
||||||
|
android:configChanges="orientation|keyboardHidden"
|
||||||
|
android:exported="true"
|
||||||
|
android:theme="@android:style/Theme.NoTitleBar"
|
||||||
|
tools:node="replace">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jpush.android.ui.PushActivity" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="com.oneclouds.wangluohuoyun" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<activity android:name=".ui.NFCActivity">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.nfc.action.TAG_DISCOVERED" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
|
||||||
|
<data android:mimeType="*/*" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.push.XService"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="false"
|
||||||
|
android:process=":pushcore">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jiguang.user.service.action" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
|
<receiver
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.push.PushMessageReceiver"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
|
||||||
|
<category android:name="com.oneclouds.wangluohuoyun" />
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
|
<provider
|
||||||
|
android:name="androidx.core.content.FileProvider"
|
||||||
|
android:authorities="com.arpa.hndahesudintocctmsdriver.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true"
|
||||||
|
tools:ignore="WrongManifestParent">
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||||
|
android:resource="@xml/file_paths" />
|
||||||
|
</provider>
|
||||||
|
|
||||||
|
<service android:name="com.arpa.hndahesudintocctmsdriver.service.TestService" />
|
||||||
|
<service
|
||||||
|
android:name="com.arpa.hndahesudintocctmsdriver.service.LocationService"
|
||||||
|
android:foregroundServiceType="location" />
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
BIN
app/src/main/assets/Icon_end.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
app/src/main/assets/Icon_line_node.png
Normal file
After Width: | Height: | Size: 651 B |
BIN
app/src/main/assets/Icon_mark1.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
app/src/main/assets/Icon_mark10.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark2.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark3.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark4.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark5.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark6.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
app/src/main/assets/Icon_mark7.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_mark8.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
app/src/main/assets/Icon_mark9.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/assets/Icon_road_blue_arrow.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
app/src/main/assets/Icon_road_green_arrow.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
app/src/main/assets/Icon_road_nofocus.png
Normal file
After Width: | Height: | Size: 112 B |
BIN
app/src/main/assets/Icon_road_red_arrow.png
Normal file
After Width: | Height: | Size: 441 B |
BIN
app/src/main/assets/Icon_road_yellow_arrow.png
Normal file
After Width: | Height: | Size: 434 B |
BIN
app/src/main/assets/Icon_start.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
app/src/main/assets/Icon_subway_station.png
Normal file
After Width: | Height: | Size: 730 B |
BIN
app/src/main/assets/Icon_walk_route.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4711.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4711.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4712.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4712.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4713.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4713.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4714.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4714.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4715.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4715.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4716.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12652_4716.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4711.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4711.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4712.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4712.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4713.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4713.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4714.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4714.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4715.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4715.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12653_4716.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4711.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4712.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4713.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4714.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4715.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12654_4716.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4711.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4712.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4713.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4714.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4715.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
app/src/main/assets/LocalTileImage/16/16_12655_4716.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9421.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9422.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9423.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9424.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9425.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9426.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9427.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9428.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9429.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9430.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9431.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25303_9432.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9421.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9422.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9423.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9424.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9425.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9426.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9427.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9428.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/LocalTileImage/17/17_25304_9429.jpg
Normal file
After Width: | Height: | Size: 16 KiB |