fix: 修复签名路径不正常导致无法编译的问题。
This commit is contained in:
parent
93221e5e1a
commit
297983ec75
63
.gitignore
vendored
Normal file
63
.gitignore
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
# These are some examples of commonly ignored file patterns.
|
||||
# You should customize this list as applicable to your project.
|
||||
# Learn more about .gitignore:
|
||||
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
|
||||
|
||||
# Node artifact files
|
||||
node_modules/
|
||||
dist/
|
||||
|
||||
# Compiled Java class files
|
||||
*.class
|
||||
|
||||
# Compiled Python bytecode
|
||||
*.py[cod]
|
||||
|
||||
# Log files
|
||||
*.log
|
||||
|
||||
# Package files
|
||||
*.jar
|
||||
|
||||
# Maven
|
||||
target/
|
||||
dist/
|
||||
|
||||
# JetBrains IDE
|
||||
.idea/
|
||||
|
||||
# Unit test reports
|
||||
TEST*.xml
|
||||
|
||||
# Generated by MacOS
|
||||
.DS_Store
|
||||
|
||||
# Generated by Windows
|
||||
Thumbs.db
|
||||
|
||||
# Applications
|
||||
*.app
|
||||
*.exe
|
||||
*.war
|
||||
|
||||
# Large media files
|
||||
*.mp4
|
||||
*.tiff
|
||||
*.avi
|
||||
*.flv
|
||||
*.mov
|
||||
*.wmv
|
||||
|
||||
# Files for the Dalvik VM
|
||||
*.dex
|
||||
|
||||
# Java class files
|
||||
*.class
|
||||
|
||||
# Gradle build files
|
||||
.gradle/
|
||||
build/
|
||||
release/
|
||||
|
||||
# Local configuration file (sdk path, etc)
|
||||
local.properties
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,7 @@ plugins {
|
|||
android {
|
||||
signingConfigs {
|
||||
debug {
|
||||
storeFile file('F:\\muqing.jks')
|
||||
storeFile file('keys\\muqing.jks')
|
||||
storePassword 'muqing153'
|
||||
keyAlias 'muqing'
|
||||
keyPassword 'muqing153'
|
||||
|
|
BIN
app/keys/muqing.jks
Normal file
BIN
app/keys/muqing.jks
Normal file
Binary file not shown.
5
app/src/main/res/drawable/baseline_add_24.xml
Normal file
5
app/src/main/res/drawable/baseline_add_24.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<vector android:height="24dp" android:tint="#000000"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
|
||||
</vector>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.appcompat.widget.Toolbar
|
||||
|
@ -19,17 +19,19 @@
|
|||
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.google.android.material.bottomappbar.BottomAppBar
|
||||
android:id="@+id/bottomAppBar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
app:menu="@menu/bottom_app_bar" />
|
||||
|
||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:srcCompat="@drawable/ic_launcher_foreground"
|
||||
app:layout_anchor="@id/bottomAppBar" />
|
||||
app:layout_anchor="@id/bottomAppBar"
|
||||
app:srcCompat="@drawable/baseline_add_24" />
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
</LinearLayout>
|
|
@ -1,24 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/accelerator"
|
||||
android:icon="@drawable/ic_launcher_foreground"
|
||||
android:title="@string/app_name"
|
||||
android:contentDescription="@string/app_name"
|
||||
app:showAsAction="ifRoom"/>
|
||||
<!-- <item-->
|
||||
<!-- android:id="@+id/accelerator"-->
|
||||
<!-- android:icon="@drawable/ic_launcher_foreground"-->
|
||||
<!-- android:title="@string/app_name"-->
|
||||
<!-- android:contentDescription="@string/app_name"-->
|
||||
<!-- app:showAsAction="ifRoom"/>-->
|
||||
|
||||
<item
|
||||
android:id="@+id/rotation"
|
||||
android:icon="@drawable/ic_launcher_foreground"
|
||||
android:title="@string/app_name"
|
||||
android:contentDescription="@string/app_name"
|
||||
app:showAsAction="ifRoom"/>
|
||||
<!-- <item-->
|
||||
<!-- android:id="@+id/rotation"-->
|
||||
<!-- android:icon="@drawable/ic_launcher_foreground"-->
|
||||
<!-- android:title="@string/app_name"-->
|
||||
<!-- android:contentDescription="@string/app_name"-->
|
||||
<!-- app:showAsAction="ifRoom"/>-->
|
||||
|
||||
<item
|
||||
android:id="@+id/dashboard"
|
||||
android:icon="@drawable/ic_launcher_foreground"
|
||||
android:title="@string/app_name"
|
||||
android:contentDescription="@string/app_name"
|
||||
app:showAsAction="ifRoom"/>
|
||||
<!-- <item-->
|
||||
<!-- android:id="@+id/dashboard"-->
|
||||
<!-- android:icon="@drawable/ic_launcher_foreground"-->
|
||||
<!-- android:title="@string/app_name"-->
|
||||
<!-- android:contentDescription="@string/app_name"-->
|
||||
<!-- app:showAsAction="ifRoom"/>-->
|
||||
</menu>
|
|
@ -1,10 +1,8 @@
|
|||
## This file is automatically generated by Android Studio.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file should *NOT* be checked into Version Control Systems,
|
||||
## This file must *NOT* be checked into Version Control Systems,
|
||||
# as it contains information specific to your local configuration.
|
||||
#
|
||||
# Location of the SDK. This is only used by Gradle.
|
||||
# For customization when using a Version Control System, please read the
|
||||
# header note.
|
||||
sdk.dir=D\:\\sdk
|
||||
#Sat Nov 25 19:49:21 CST 2023
|
||||
sdk.dir=E\:\\SDK\\Android
|
||||
|
|
Reference in New Issue
Block a user