Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MiYaFastCashier
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jiangjiantao
MiYaFastCashier
Commits
337e90b4
Commit
337e90b4
authored
May 30, 2022
by
赵鹏翔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加libcommon包
parent
30bb8b6a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
1 deletion
+67
-1
.gitignore
lib_common/.gitignore
+1
-0
build.gradle
lib_common/build.gradle
+39
-0
consumer-rules.pro
lib_common/consumer-rules.pro
+0
-0
proguard-rules.pro
lib_common/proguard-rules.pro
+21
-0
AndroidManifest.xml
lib_common/src/main/AndroidManifest.xml
+5
-0
settings.gradle
settings.gradle
+1
-1
No files found.
lib_common/.gitignore
0 → 100644
View file @
337e90b4
/build
\ No newline at end of file
lib_common/build.gradle
0 → 100644
View file @
337e90b4
plugins
{
id
'com.android.library'
id
'kotlin-android'
}
android
{
compileSdkVersion
31
defaultConfig
{
minSdkVersion
19
targetSdkVersion
31
versionCode
1
versionName
"1.0"
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles
"consumer-rules.pro"
}
buildTypes
{
release
{
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
compileOptions
{
sourceCompatibility
JavaVersion
.
VERSION_1_8
targetCompatibility
JavaVersion
.
VERSION_1_8
}
kotlinOptions
{
jvmTarget
=
'1.8'
}
}
dependencies
{
implementation
'androidx.core:core-ktx:1.3.2'
implementation
'androidx.appcompat:appcompat:1.2.0'
implementation
'com.google.android.material:material:1.3.0'
}
\ No newline at end of file
lib_common/consumer-rules.pro
0 → 100644
View file @
337e90b4
lib_common/proguard-rules.pro
0 → 100644
View file @
337e90b4
# 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
lib_common/src/main/AndroidManifest.xml
0 → 100644
View file @
337e90b4
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"com.fastcashier.lib_common"
>
</manifest>
\ No newline at end of file
settings.gradle
View file @
337e90b4
rootProject
.
name
=
"MiYaFastCashier"
include
':app'
include
':
core
'
include
':
lib_common
'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment