Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
S
Super PDF Reader
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
Super PDF Reader
Commits
a3ff0947
Commit
a3ff0947
authored
Jun 27, 2024
by
wanglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
...release打包混淆和秘钥...
parent
55d159a7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
8 deletions
+66
-8
build.gradle
app/build.gradle
+13
-4
proguard-rules.pro
app/proguard-rules.pro
+53
-4
smartcl.jks
smartcl.jks
+0
-0
No files found.
app/build.gradle
View file @
a3ff0947
...
...
@@ -17,11 +17,20 @@ android {
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
setProperty
(
"archivesBaseName"
,
"PDF-v${versionName}"
)
}
signingConfigs
{
realse
{
storeFile
file
(
'../smartcl.jks'
)
storePassword
'123456'
keyAlias
'key0'
keyPassword
'123456'
}
}
buildTypes
{
release
{
minifyEnabled
false
minifyEnabled
true
shrinkResources
true
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
signingConfig
signingConfigs
.
realse
}
}
compileOptions
{
...
...
@@ -45,8 +54,8 @@ dependencies {
implementation
(
libs
.
material
)
implementation
(
libs
.
androidx
.
activity
)
implementation
(
libs
.
androidx
.
constraintlayout
)
testImplementation
(
libs
.
junit
)
androidTestImplementation
(
libs
.
androidx
.
junit
)
//
testImplementation(libs.junit)
//
androidTestImplementation(libs.androidx.junit)
androidTestImplementation
(
libs
.
androidx
.
espresso
.
core
)
implementation
(
"androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
)
implementation
(
"com.google.android.material:material:1.4.0"
)
...
...
app/proguard-rules.pro
View file @
a3ff0947
...
...
@@ -20,12 +20,61 @@
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-
keep
class
com
.
shockwave
.
**
-
dontoptimize
-
keepattributes
Signature
-
keep
class
com
.
shockwave
.
**
-
keep
class
com
.
base
.
superpdfreader
.
bean
.
**
-
keep
class
com
.
google
.
gson
.
stream
.
**
{
*
;
}
-
keep
class
com
.
google
.
gson
.
**
{
*
;
}
-
keep
class
com
.
alibaba
.
idst
.
**
{
*
;
}
-
keep
class
*
extends
com
.
google
.
gson
.
reflect
.
TypeToken
-
keepattributes
AnnotationDefault
,
RuntimeVisibleAnnotations
\ No newline at end of file
-
keepattributes
AnnotationDefault
,
RuntimeVisibleAnnotations
-
dontwarn
aQute
.
bnd
.
annotation
.
spi
.
ServiceConsumer
-
dontwarn
aQute
.
bnd
.
annotation
.
spi
.
ServiceProvider
-
dontwarn
com
.
gemalto
.
jp2
.
JP2Decoder
-
dontwarn
com
.
gemalto
.
jp2
.
JP2Encoder
-
dontwarn
java
.
awt
.
Color
-
dontwarn
java
.
awt
.
Dimension
-
dontwarn
java
.
awt
.
Rectangle
-
dontwarn
java
.
awt
.
color
.
ColorSpace
-
dontwarn
java
.
awt
.
geom
.
AffineTransform
-
dontwarn
java
.
awt
.
geom
.
Dimension2D
-
dontwarn
java
.
awt
.
geom
.
Path2D
-
dontwarn
java
.
awt
.
geom
.
PathIterator
-
dontwarn
java
.
awt
.
geom
.
Point2D
-
dontwarn
java
.
awt
.
geom
.
Rectangle2D
$
Double
-
dontwarn
java
.
awt
.
geom
.
Rectangle2D
-
dontwarn
java
.
awt
.
image
.
BufferedImage
-
dontwarn
java
.
awt
.
image
.
ColorModel
-
dontwarn
java
.
awt
.
image
.
ComponentColorModel
-
dontwarn
java
.
awt
.
image
.
DirectColorModel
-
dontwarn
java
.
awt
.
image
.
IndexColorModel
-
dontwarn
java
.
awt
.
image
.
PackedColorModel
-
dontwarn
javax
.
annotation
.
Nullable
-
dontwarn
net
.
sf
.
saxon
.
Configuration
-
dontwarn
net
.
sf
.
saxon
.
dom
.
DOMNodeWrapper
-
dontwarn
net
.
sf
.
saxon
.
om
.
Item
-
dontwarn
net
.
sf
.
saxon
.
om
.
NamespaceUri
-
dontwarn
net
.
sf
.
saxon
.
om
.
NodeInfo
-
dontwarn
net
.
sf
.
saxon
.
om
.
Sequence
-
dontwarn
net
.
sf
.
saxon
.
om
.
SequenceTool
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
IndependentContext
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
XPathDynamicContext
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
XPathEvaluator
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
XPathExpression
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
XPathStaticContext
-
dontwarn
net
.
sf
.
saxon
.
sxpath
.
XPathVariable
-
dontwarn
net
.
sf
.
saxon
.
tree
.
wrapper
.
VirtualNode
-
dontwarn
net
.
sf
.
saxon
.
value
.
DateTimeValue
-
dontwarn
net
.
sf
.
saxon
.
value
.
GDateValue
-
dontwarn
org
.
apache
.
batik
.
anim
.
dom
.
SAXSVGDocumentFactory
-
dontwarn
org
.
apache
.
batik
.
bridge
.
BridgeContext
-
dontwarn
org
.
apache
.
batik
.
bridge
.
DocumentLoader
-
dontwarn
org
.
apache
.
batik
.
bridge
.
GVTBuilder
-
dontwarn
org
.
apache
.
batik
.
bridge
.
UserAgent
-
dontwarn
org
.
apache
.
batik
.
bridge
.
UserAgentAdapter
-
dontwarn
org
.
apache
.
batik
.
util
.
XMLResourceDescriptor
-
dontwarn
org
.
osgi
.
framework
.
Bundle
-
dontwarn
org
.
osgi
.
framework
.
BundleContext
-
dontwarn
org
.
osgi
.
framework
.
FrameworkUtil
-
dontwarn
org
.
osgi
.
framework
.
ServiceReference
\ No newline at end of file
smartcl.jks
0 → 100644
View file @
a3ff0947
File added
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