Skip to content

Commit d83efcb

Browse files
authored
Merge pull request #4 from xianglin1998/master
all sources upload.
2 parents 87c127d + 3c73f2c commit d83efcb

File tree

9,740 files changed

+3269600
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,740 files changed

+3269600
-0
lines changed

.idea/codeStyles/Project.xml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.en.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# RFID Tools
2+
3+
#### Description
4+
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
5+
6+
#### Software Architecture
7+
Software architecture description
8+
9+
#### Installation
10+
11+
1. xxxx
12+
2. xxxx
13+
3. xxxx
14+
15+
#### Instructions
16+
17+
1. xxxx
18+
2. xxxx
19+
3. xxxx
20+
21+
#### Contribution
22+
23+
1. Fork the repository
24+
2. Create Feat_xxx branch
25+
3. Commit your code
26+
4. Create Pull Request
27+
28+
29+
#### Gitee Feature
30+
31+
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
32+
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
33+
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
34+
4. The most valuable open source project [GVP](https://gitee.com/gvp)
35+
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
36+
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)

app/build.gradle

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
//签名文件配置
5+
signingConfigs {
6+
DXL {
7+
keyAlias 'DXL'
8+
keyPassword '15219233050'
9+
storeFile file('D:/DXL_AS_KEY/DXL.jks')
10+
storePassword '15219233050'
11+
}
12+
}
13+
//构建项目的sdk版本
14+
compileSdkVersion 29
15+
//构建器版本
16+
buildToolsVersion "29.0.2"
17+
//一些默认的配置
18+
defaultConfig {
19+
//app的包名,也就是ID名。
20+
applicationId "com.rfidresearchgroup.rfidtools"
21+
//最低支持的版本
22+
minSdkVersion 18
23+
//目标的版本
24+
targetSdkVersion 29
25+
//单元测试的支持
26+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
27+
//版本号,整形
28+
versionCode 3
29+
//版本名称,字符串!
30+
versionName "1.3"
31+
}
32+
//构建的类型,发布版和测试版
33+
buildTypes {
34+
release {
35+
minifyEnabled false
36+
shrinkResources false
37+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
38+
signingConfig signingConfigs.DXL
39+
}
40+
debug {
41+
shrinkResources false
42+
signingConfig signingConfigs.DXL
43+
minifyEnabled false
44+
}
45+
}
46+
//编译器设置
47+
compileOptions {
48+
targetCompatibility JavaVersion.VERSION_1_8
49+
sourceCompatibility JavaVersion.VERSION_1_8
50+
}
51+
lintOptions {
52+
//checkReleaseBuilds false
53+
// Or, if you prefer, you can continue to check for errors in release builds,
54+
// but continue the build even when errors are found:
55+
//abortOnError false
56+
disable 'GoogleAppIndexingWarning'
57+
}
58+
}
59+
60+
//依赖库配置
61+
dependencies {
62+
implementation fileTree(include: ['*.jar'], dir: 'libs')
63+
64+
implementation 'org.jetbrains:annotations-java5:15.0'
65+
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
66+
implementation 'androidx.appcompat:appcompat:1.1.0'
67+
implementation 'com.google.android.material:material:1.0.0'
68+
implementation 'androidx.gridlayout:gridlayout:1.0.0'
69+
implementation 'com.alibaba:fastjson:1.2.59'
70+
71+
implementation project(':freo')
72+
implementation project(':utils')
73+
implementation project(':mfkey')
74+
implementation project(':pn53x')
75+
implementation project(':crapto1')
76+
implementation project(':console')
77+
implementation project(':chameleon')
78+
implementation project(':commapping')
79+
implementation project(':pm3official')
80+
implementation project(':pm3iceman')
81+
implementation project(':pm3rdv4rrg')
82+
83+
/*单元测试支持导入!*/
84+
testImplementation 'junit:junit:4.12'
85+
}

0 commit comments

Comments
 (0)