Commit d42e2b5c authored by 张自超's avatar 张自超

fix

parents
Pipeline #152945 canceled with stages
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
/build
\ No newline at end of file
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
static int versionCode1(){
return 1
}
static String versionName1(){
return '1.0'
}
android {
compileSdk 32
defaultConfig {
minSdk 19
targetSdk 32
versionCode versionCode1()
versionName versionName1()
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "佳都产前事件分析看板"+"-"+versionName1()+"-"+versionCode1()+".apk"
}
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
dataBinding {
enabled true
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
//noinspection GradleCompatible
def requested = details.requested
if (requested.group == 'com.squareup.retrofit2') {
if (requested.name=='retrofit' || requested.name=='adapter-rxjava2' ) {
details.useVersion "2.6.0"
}
}
if (requested.group == 'com.squareup.okio') {
details.useVersion "2.6.0"
}
if(requested.group=='com.squareup.okhttp3'){
details.useVersion "3.12.2"
}
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'net.huansi.brand:baseform:23.10.10.1-SNAPSHOT'
//OkHttp
implementation 'com.squareup.okhttp3:okhttp:3.12.2'
implementation "com.squareup.okhttp3:logging-interceptor:3.12.2"
//Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
implementation "com.squareup.retrofit2:adapter-rxjava2:2.6.0"
}
\ No newline at end of file
# 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
\ No newline at end of file
<?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="net.huansi.app.hssummarizingboard">
<uses-sdk tools:overrideLibrary="baseform.android.huansi.net|com.qmuiteam.qmui|com.qmuiteam.qmui.arch"/>
<application
android:name=".BoardApplication"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@drawable/icon_huansi_logo"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.Team_Board2"
tools:replace="android:label"
tools:targetApi="31">
<activity
android:name="baseform.android.huansi.net.configui.ConfigActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.login.LoginActivity"
android:exported="true">
<intent-filter>
<action android:name="action.board.hssummarizingboard" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.main.MainActivity" />
</application>
</manifest>
\ No newline at end of file
package net.huansi.app.hssummarizingboard
import baseform.android.huansi.net.application.HsApplication
import baseform.android.huansi.net.configui.ConfigActivity
class BoardApplication:HsApplication(){
override fun getIntentActionName(): String {
return "action.board.hssummarizingboard"
}
override fun onCreate() {
super.onCreate()
ConfigActivity.ignoreOrNotSQLTest(true)
}
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.activity.login
import android.annotation.SuppressLint
import android.app.Activity
import android.content.Intent
import baseform.android.huansi.net.configui.ConfigActivity
import baseform.android.huansi.net.util.DeviceUtil
import net.huansi.app.hssummarizingboard.R
import net.huansi.app.hssummarizingboard.activity.main.MainActivity
import net.huansi.app.hssummarizingboard.base.SutureClothBaseActivity
import net.huansi.app.hssummarizingboard.databinding.ActivityLoginBinding
import net.huansi.app.hssummarizingboard.dialog.LoginSettingDialog
@SuppressLint("CheckResult")
class LoginActivity : SutureClothBaseActivity<ActivityLoginBinding, LoginPresenter>() {
override fun getLayoutId(): Int {
return R.layout.activity_login
}
override fun init() {
super.init()
initListener()
}
private fun initListener() {
mBinding.tvBoardConfigGo.setOnClickListener {
gotoMain()
}
//修改IP
mBinding.tvBoardConfigIP.setOnClickListener {
ConfigActivity.toThisFromOtherPage(this)
finish()
}
mBinding.tvBoardSetting.setOnClickListener {
val view = LoginSettingDialog(this)
mDialogManager1.showCustomerView(
view,
width = (DeviceUtil.getScreenWidth(this) * 0.6f).toInt()
)
}
}
private fun gotoMain() {
MainActivity.toThis(this)
finish()
}
companion object {
fun toThis(from: Activity) {
val intent = Intent(from, LoginActivity::class.java)
from.startActivity(intent)
}
}
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.activity.login
import net.huansi.app.hssummarizingboard.base.SutureClothBasePresenter
class LoginPresenter: SutureClothBasePresenter() {
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.activity.main
import baseform.android.huansi.net.util.RxTimerManager
import net.huansi.app.hssummarizingboard.base.SutureClothBasePresenter
import net.huansi.app.hssummarizingboard.entity.BrandBean
import net.huansi.app.hssummarizingboard.entity.ListBean
import net.huansi.app.hssummarizingboard.entity.ProDetailsBean
import net.huansi.app.hssummarizingboard.entity.StatisticsDataBean
import net.huansi.app.hssummarizingboard.utils.RequestUtils
class MainPresenter : SutureClothBasePresenter() {
private var mDateTimeRefreshTimer: RxTimerManager? = null
fun startDateTimeRefreshTimer(callback: (l: Long) -> Unit) {
stopDateTimeRefreshTimer()
mDateTimeRefreshTimer = RxTimerManager()
mDateTimeRefreshTimer?.intervalStart1(5, 1000L) {
callback(it)
}
}
fun stopDateTimeRefreshTimer() {
mDateTimeRefreshTimer?.cancel()
mDateTimeRefreshTimer = null
}
//请求优秀区和潜能区
suspend fun requestAreaData(reportType: String): ListBean? {
showLoadDialog()
val result = try {
RequestUtils.requestAreaData(reportType)
} catch (e: Exception) {
iForm?.showErrorMessage(e.message ?: "操作失败")
null
}
dismissDialog()
return result
}
/**
* 请求节点汇总详情
*/
suspend fun requestProDetails(): List<ProDetailsBean> {
showLoadDialog()
val result = try {
RequestUtils.requestProDetails()
} catch (e: Exception) {
iForm?.showErrorMessage(e.message ?: "操作失败")
listOf()
}
dismissDialog()
return result
}
/**
* 请求各品牌堵点
*/
suspend fun requestBrandList(): List<BrandBean> {
showLoadDialog()
val result = try {
RequestUtils.requestBrandList()
} catch (e: Exception) {
iForm?.showErrorMessage(e.message ?: "操作失败")
listOf()
}
dismissDialog()
return result
}
/**
* 中心统计数据
*/
suspend fun requestStatisticsData(): StatisticsDataBean? {
showLoadDialog()
val result = try {
RequestUtils.requestStatisticsData()
} catch (e: Exception) {
iForm?.showErrorMessage(e.message ?: "操作失败")
null
}
dismissDialog()
return result
}
/**
* 处理数据
*/
suspend fun getSummaryDetails(list: List<ProDetailsBean>): ListBean {
return RequestUtils.getSummaryDetails(list)
}
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.adapter
import android.content.Context
import baseform.android.huansi.net.baseui.HsRecyclerViewBaseAdapter
import net.huansi.app.hssummarizingboard.R
import net.huansi.app.hssummarizingboard.databinding.ItemBrandBinding
import net.huansi.app.hssummarizingboard.entity.BrandBean
/**
des:
author:zhang
time:2023/10/20 19:02
*/
class BrandAdapter(list: List<BrandBean>, context: Context) :
HsRecyclerViewBaseAdapter<BrandBean, ItemBrandBinding>(list, context) {
override fun getLayoutId(): Int {
return R.layout.item_brand
}
override fun onHsBindViewHolder(
holder: HsRecyclerViewBaseViewHolder<ItemBrandBinding>,
bean: BrandBean,
position: Int
) {
holder.binding.tvBrandName.text = bean.brandName
holder.binding.tvBrandName.setBackgroundColor(
if (bean.isCheck)
mContext.resources.getColor(R.color.F4CD6BF)
else
mContext.resources.getColor(R.color.F0042AE)
)
}
}
\ No newline at end of file
package net.huansi.app.checkcloth.api
import baseform.android.huansi.net.request.ApiDoc
import com.alibaba.fastjson.JSONObject
import okhttp3.ResponseBody
import retrofit2.Call
import retrofit2.http.Body
import retrofit2.http.GET
import retrofit2.http.HTTP
import retrofit2.http.POST
import retrofit2.http.PUT
import retrofit2.http.Query
import retrofit2.http.Url
interface CommonApi {
@ApiDoc("请求统计数据")
@GET("node/flow_overview/report")
fun requestStatisticsData(@Query("access_token") accessToken: String): Call<ResponseBody>
@ApiDoc("请求优秀区")
@GET("node/excellence/report")
fun requestAreaData(
@Query("access_token") accessToken: String,
@Query("report_type") reportType: String
): Call<ResponseBody>
@ApiDoc("请求节点汇总详情")
@GET("node/pro_details/report")
fun requestProDetails(@Query("access_token") accessToken: String): Call<ResponseBody>
@ApiDoc("请求各品牌堵点")
@GET("node/brand_obstruction/report")
fun requestBrandList(@Query("access_token") accessToken: String): Call<ResponseBody>
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.base
import androidx.databinding.ViewDataBinding
import baseform.android.huansi.net.baseui.HsActivity
import baseform.android.huansi.net.formbase.IBaseFormView
import baseform.android.huansi.net.formbase.TBaseForm
abstract class SutureClothBaseActivity<Binding : ViewDataBinding,Form : TBaseForm<IBaseFormView>>
:HsActivity<Binding,Form,IBaseFormView>() {
override fun requireSetAppDensity():Boolean{
return true
}
override fun init() {
}
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.base
import baseform.android.huansi.net.formbase.IBaseFormView
import baseform.android.huansi.net.formbase.TBaseForm
abstract class SutureClothBasePresenter:TBaseForm<IBaseFormView>() {
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.dialog
import android.annotation.SuppressLint
import android.content.Context
import baseform.android.huansi.net.baseui.HsCenterPopupView
import baseform.android.huansi.net.util.ShareUtil
import baseform.android.huansi.net.util.ToastUtil
import net.huansi.app.hssummarizingboard.R
import net.huansi.app.hssummarizingboard.databinding.DialogLoginSettingBinding
import net.huansi.app.hssummarizingboard.utils.Constant
@SuppressLint("ViewConstructor", "MissingPermission")
class LoginSettingDialog(context: Context) :
HsCenterPopupView<DialogLoginSettingBinding>(context) {
override fun getLayoutId(): Int {
return R.layout.dialog_login_setting
}
override fun initPopupContent() {
super.initPopupContent()
initListener()
}
private fun initListener() {
//取消
binding.btnLSCancel.setOnClickListener {
dismiss()
}
binding.btnLSOK.setOnClickListener {
if (binding.etDataRefreshTime.text.toString().trim().isEmpty()) {
ToastUtil.showShortErrorToast("请输入刷新时间")
return@setOnClickListener
}
ShareUtil.putLong(
Constant.SP_DATA_REFRESH_TIME,
binding.etDataRefreshTime.text.toString().trim().toLong()
)
dismiss()
}
}
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
/**
des:
author:zhang
time:2023/10/19 16:30
*/
class AreaDataBean : HsBean() {
var on_time_finished_hasty: String = ""//准时完成率
var task_charge_person: String = ""//姓名
var on_time_finished: String = ""//任务数
var finished_hasty: String = ""//任务完成率
var group_name: String = ""//班组
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
/**
des:
author:zhang
time:2023/10/20 18:11
*/
class BrandBean : HsBean() {
var isCheck = false
var brandName: String = ""
var infoList: List<BrandInfoBean>? = null
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
/**
des:
author:zhang
time:2023/10/20 18:46
*/
class BrandInfoBean : HsBean() {
var name: String = ""
var value: String = ""
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
import com.alibaba.fastjson.JSONArray
/**
des:
author:zhang
time:2023/10/19 17:28
*/
class ListBean : HsBean() {
var pageCount: Int = 0//共有多少页
var contentList = mutableListOf<JSONArray>()
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
/**
des:饼状图
author:zhang
time:2023/10/19 16:30
*/
class PieChartBean : HsBean() {
var sX = ""
var sY = ""
var color = 0//sColor显示的颜色
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
/**
des:
author:zhang
time:2023/10/19 16:30
*/
class ProDetailsBean : HsBean() {
var job_name: String = ""//事件名称
var on_time_finished: String = ""//按时完成
var on_time_unfinished: String = ""//进行中
var timeout_finished: String = ""//超时完成
var timeout_unfinished: String = ""//超期未完成
var total_task: String = ""//总任务
var unfinished: String = ""//未完成
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.entity
import baseform.android.huansi.net.model.entity.HsBean
class StatisticsDataBean : HsBean() {
var finished: String = ""//已完成
var on_time_finished_hasty: String = ""//按期处理
var on_time_unfinished_hasty: String = ""//进行中
var out_time_unfinished_hasty: String = ""//超时未处理
var timeout_finished_hasty: String = ""//超期处理
var total_task: String = ""//总任务
var unfinished: String = ""//未完成
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.utils
object Constant {
const val SP_DATA_REFRESH_TIME = "data_refresh_time"//数据刷新时间
}
\ No newline at end of file
package net.huansi.app.hssummarizingboard.utils
import android.widget.EditText
import baseform.android.huansi.net.request.WebResponseListener
import baseform.android.huansi.net.util.BasicVariableUtils
import baseform.android.huansi.net.util.ToastUtil
import com.alibaba.fastjson.JSON
import com.alibaba.fastjson.JSONArray
import com.alibaba.fastjson.JSONObject
import com.alibaba.fastjson.parser.Feature
import java.math.BigDecimal
/**
* 保留几位小数
* @param decimalCount 小数位数
*/
fun Float.saveDecimal(decimalCount: Int = 2): Float {
return BasicVariableUtils.saveDecimal(this.toDouble(), decimalCount).toFloat()
}
/**
* 保留几位小数
* BigDecimal.ROUND_DOWN 不四舍五入
* BigDecimal.ROUND_UP 进位处理,就是直接+1
* BigDecimal.ROUND_HALF_UP 四舍五入
*/
fun String.saveDecimalDiscard(
decimalCount: Int = 2,
roundingMode: Int = BigDecimal.ROUND_DOWN
): Float {
//使用toString可以避免出现精度问题,如输入299.59使用toDouble()时会输出299.58
val b = BigDecimal(this)
return b.setScale(decimalCount, roundingMode).toFloat()
}
/**
* 保留几位小数
* BigDecimal.ROUND_DOWN 不四舍五入
* BigDecimal.ROUND_UP 进位处理,就是直接+1
*/
fun Float.saveDecimalDiscard(
decimalCount: Int = 2,
roundingMode: Int = BigDecimal.ROUND_DOWN
): Float {
//使用toString可以避免出现精度问题,如输入299.59使用toDouble()时会输出299.58
val b = BigDecimal(this.toString())
return b.setScale(decimalCount, roundingMode).toFloat()
}
fun EditText.setInputState(state: Boolean) {
this.isFocusable = state
this.isFocusableInTouchMode = state
}
/**
* 接口返回的JSONObject转为需要使用的JSONArray
*/
fun String?.toJSONArray(name: String): JSONArray {
if (this.isNullOrEmpty()) {
ToastUtil.showShortErrorToast("${name}: 接口返回数据错误")
return JSONArray()
}
val json = JSON.parse(this, Feature.OrderedField)
if (json is JSONObject) {
// if (json.getBoolean("success").not()) {
// throw WebResponseListener.HSException(
// json.getString("error"),
// WebResponseListener.WebResponseError.CODE_ERROR_NORMAL
// )
// }
return json.getJSONArray("data")
} else if (json is JSONArray) {
return json
} else {
ToastUtil.showShortErrorToast("${name}: 接口返回数据格式有误")
return JSONArray()
}
}
/**
* 刷卡输入框去除重复字符
*/
fun String.toDeleteRepetitionString(repetitionString: String): String {
if (this.contains(repetitionString)) {
return this.substring(repetitionString.length, this.length)
}
return this
}
/**
* 去除一些特殊字符
*/
fun String.removeOtherCharacter(): String {
if (this.isEmpty()) return this
return this.replace("\u0000", "")
.replace("��", "")
}
//fun View.getAbsoluteX():Float{
// val point=IntArray(2)
// getLocationInWindow(point)
// return point[0].toFloat()
//}
//
//fun View.getAbsoluteY():Float{
// val point=IntArray(2)
// getLocationInWindow(point)
// return point[1].toFloat()
//}
\ No newline at end of file
This diff is collapsed.
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false">
<shape>
<corners android:radius="200dp"/>
<solid android:color="#1890FF"/>
</shape>
</item>
<item android:state_pressed="true">
<shape>
<corners android:radius="200dp"/>
<solid android:color="#4C85BA"/>
</shape>
</item>
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false">
<shape>
<corners android:radius="200dp"/>
<gradient android:startColor="#5970FF" android:endColor="#4040FF"/>
</shape>
</item>
<item android:state_pressed="true">
<shape>
<corners android:radius="200dp"/>
<gradient android:startColor="#798AF1" android:endColor="#6161C8"/>
</shape>
</item>
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false">
<shape>
<corners android:radius="200dp"/>
<solid android:color="#00000000"/>
<stroke android:width="1.5dp" android:color="#CBCBCB"/>
</shape>
</item>
<item android:state_pressed="true">
<shape>
<corners android:radius="200dp"/>
<solid android:color="#1890FF"/>
<stroke android:width="1.5dp" android:color="#CBCBCB"/>
</shape>
</item>
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="0.4dp" android:color="#dddddd"/>
<corners android:radius="5dp"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white"/>
<corners android:radius="10dp"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/icon_bg_main" />
<ImageView
android:id="@+id/imvLoginLogo"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:src="@drawable/icon_login_huansi_logo"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tvBoardConfigGo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="15dp"
android:background="@drawable/selector_btn_blue"
android:gravity="center"
android:padding="10dp"
android:text="进入"
android:textColor="@color/white"
android:textSize="20sp" />
<TextView
android:id="@+id/tvBoardConfigIP"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="15dp"
android:layout_marginTop="20dp"
android:background="@drawable/selector_btn_green"
android:gravity="center"
android:padding="10dp"
android:text="配置IP"
android:textColor="@color/white"
android:textSize="20sp" />
<TextView
android:id="@+id/tvBoardSetting"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="15dp"
android:layout_marginTop="20dp"
android:background="@drawable/selector_btn_green"
android:gravity="center"
android:padding="10dp"
android:text="全局设置"
android:textColor="@color/white"
android:textSize="20sp" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#031a49">
<ImageView
android:id="@+id/ivBackTop"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_40"
android:scaleType="fitXY"
android:src="@drawable/icon_back_top"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="佳都节点汇总分析"
android:textColor="@color/white"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="@id/ivBackTop"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@id/ivBackTop" />
<TextView
android:id="@+id/tvCurrentDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:layout_marginEnd="15dp"
android:textColor="@color/white"
android:textSize="14sp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical"
android:paddingHorizontal="15dp"
app:layout_constraintBottom_toTopOf="@id/ivBackBot"
app:layout_constraintTop_toBottomOf="@id/ivBackTop">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2.5">
<LinearLayout
android:id="@+id/llAreaLeft"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/clAreaMiddle"
app:layout_constraintTop_toTopOf="parent">
<include
android:id="@+id/includeAreaLeft"
layout="@layout/include_area_left"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/clAreaMiddle"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_weight="1.5"
app:layout_constraintLeft_toRightOf="@id/llAreaLeft"
app:layout_constraintRight_toLeftOf="@id/llAreaRight"
app:layout_constraintTop_toTopOf="parent">
<include
android:id="@+id/includeAreaMiddle"
layout="@layout/include_area_middle"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout
android:id="@+id/llAreaRight"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_weight="1.2"
app:layout_constraintLeft_toRightOf="@id/clAreaMiddle"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<include
android:id="@+id/includeAreaRight"
layout="@layout/include_area_right"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout
android:id="@+id/llAreaBot"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="15dp"
android:layout_weight="1.1"
android:orientation="vertical">
<include
android:id="@+id/includeAreaBot"
layout="@layout/include_area_bot"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/ivBackBot"
android:layout_width="match_parent"
android:layout_height="30dp"
android:scaleType="fitXY"
android:src="@drawable/icon_back_bot"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_dialog_white_bg"
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="20dp">
<LinearLayout
android:id="@+id/llRFIDPrinter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginVertical="10dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="数据刷新时间(秒):"
android:textColor="@color/text_color_black1"
android:textSize="20sp"
android:textStyle="bold" />
<EditText
android:id="@+id/etDataRefreshTime"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="5" />
</LinearLayout>
<LinearLayout
android:id="@+id/llWeight"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginVertical="10dp"
android:orientation="horizontal"
android:visibility="gone">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="页面刷新时间(秒):"
android:textColor="@color/text_color_black1"
android:textSize="20sp"
android:textStyle="bold" />
<EditText
android:id="@+id/etWeightName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginVertical="10dp"
android:gravity="center_horizontal"
android:orientation="horizontal">
<Button
android:id="@+id/btnLSCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="20dp"
android:background="@drawable/selector_btn_translate"
android:paddingHorizontal="40dp"
android:text="取消"
android:textColor="@color/text_color_black1"
android:textSize="15sp" />
<Button
android:id="@+id/btnLSRefresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="20dp"
android:background="@drawable/selector_btn_translate"
android:paddingHorizontal="40dp"
android:text="刷新"
android:textColor="@color/text_color_black1"
android:textSize="15sp"
android:visibility="gone" />
<Button
android:id="@+id/btnLSOK"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="20dp"
android:background="@drawable/selector_btn_blue_1890ff"
android:paddingHorizontal="40dp"
android:text="确定"
android:textColor="@color/white"
android:textSize="15sp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#031a49"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@drawable/icon_hint_back"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="10dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:scaleType="fitXY"
android:src="@drawable/icon_hint" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:gravity="center_vertical"
android:text="产前事件完成分析"
android:textColor="@color/white"
android:textSize="12sp" />
</LinearLayout>
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/bcProductionBarChart"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#031a49"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@drawable/icon_hint_back"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="10dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:scaleType="fitXY"
android:src="@drawable/icon_hint" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:gravity="center_vertical"
android:text="优秀区"
android:textColor="@color/white"
android:textSize="12sp" />
</LinearLayout>
<TableLayout
android:id="@+id/tlExcellenceArea"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="15dp"
android:background="@drawable/icon_hint_back"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="10dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:scaleType="fitXY"
android:src="@drawable/icon_hint" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:gravity="center_vertical"
android:text="潜能区"
android:textColor="@color/white"
android:textSize="12sp" />
</LinearLayout>
<TableLayout
android:id="@+id/tlPotentialArea"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
</layout>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#031a49"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@drawable/icon_hint_back"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="10dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:scaleType="fitXY"
android:src="@drawable/icon_hint" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:gravity="center_vertical"
android:text="产前事件详情"
android:textColor="@color/white"
android:textSize="12sp" />
</LinearLayout>
<TableLayout
android:id="@+id/tlSummaryDetails"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginTop="15dp"
android:background="@drawable/icon_hint_back"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="10dp"
android:layout_height="25dp"
android:layout_marginStart="10dp"
android:scaleType="fitXY"
android:src="@drawable/icon_hint" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:gravity="center_vertical"
android:text="各品牌堵点"
android:textColor="@color/white"
android:textSize="12sp" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyBrand"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dp" />
<com.github.mikephil.charting.charts.PieChart
android:id="@+id/pcBrandPieChart"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingHorizontal="5dp">
<TextView
android:id="@+id/tvBrandName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/F0042AE"
android:paddingHorizontal="4dp"
android:paddingVertical="2dp"
android:text="测试"
android:textColor="@color/white"
android:textSize="9sp" />
</LinearLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.HSSummarizingBoard" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="table_title">#F3F4F5</color>
<color name="table_border">#E6EBF5</color>
<color name="tab_not_selected">#999999</color>
<color name="tab_selected">#1890FF</color>
<color name="text_color_black1">#333333</color>
<color name="table_choose">#E3EDFF</color>
<color name="chart_target">#4467E2</color>
<color name="blue_main">#5970FF</color>
<color name="red1">#DD0000</color>
<color name="F0c0c0c">#0c0c0c</color>
<color name="F229FFF">#229fff</color>
<color name="F3E93EC">#3E93EC</color>
<color name="F1DF2F7">#1DF2F7</color>
<color name="FEEC017">#EEC017</color>
<color name="F027DB4">#027DB4</color>
<color name="Fff175e">#ff175e</color>
<color name="F70B602">#70B602</color>
<color name="FF59A23">#F59A23</color>
<color name="F7B00FF">#7B00FF</color>
<color name="F0042AE">#0042AE</color>
<color name="F4CD6BF">#4CD6BF</color>
</resources>
\ No newline at end of file
<resources>
<string name="app_name">佳都产前事件分析看板</string>
</resources>
\ No newline at end of file
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Team_Board2" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
<style name="Theme.Team_Board2.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.Team_Board2.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="Theme.Team_Board2.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older that API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>
\ No newline at end of file
buildscript {
ext.kotlin_version = '1.7.20'
repositories {
google()
mavenCentral()
maven {
url 'http://47.110.145.204:8245/repository/hs-maven-group/'
allowInsecureProtocol = true
}
}
dependencies {
classpath "com.android.tools.build:gradle:7.2.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'http://47.110.145.204:8245/repository/hs-maven-group/'
allowInsecureProtocol = true
}
}
}
\ No newline at end of file
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
#Thu Oct 19 10:52:11 CST 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# 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
#
# https://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.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
include ':app'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment