Commit 95c4770b authored by pangcong Git's avatar pangcong Git
Browse files

去掉水印、预制H5缓存文件、修改HTTPS端口号

parent ecb84a4f
...@@ -22,10 +22,21 @@ android { ...@@ -22,10 +22,21 @@ android {
} }
} }
/*signingConfigs {
release {
storeFile file("./citicsf_csp_pad.jks")
storePassword "wckh@2025"
keyAlias "key0"
keyPassword "wckh@2025"
}
}*/
buildTypes { buildTypes {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// signingConfig signingConfigs.release
} }
} }
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<plugin name="screen" class="fox.app.plugins.screen.ScreenPlugin" text="屏幕插件"> <plugin name="screen" class="fox.app.plugins.screen.ScreenPlugin" text="屏幕插件">
</plugin> </plugin>
<!--白名单插件--> <!--白名单插件-->
<plugin name="watermark" class="fox.app.plugins.watermark.WaterMarkPlugin" text="水印插件" onload="true"> <plugin name="watermark" class="fox.app.plugins.watermark.WaterMarkPlugin" text="水印插件" onload="false">
<property key="enabled" type="boolean">true</property> <property key="enabled" type="boolean">true</property>
<property key="text" type="string">Fox前端框架</property> <property key="text" type="string">Fox前端框架</property>
<property key="size" type="string">22</property> <property key="size" type="string">22</property>
......
...@@ -535,7 +535,7 @@ public class HttpURLClient { ...@@ -535,7 +535,7 @@ public class HttpURLClient {
this.socket = factory.createSocket(); this.socket = factory.createSocket();
// 设置SSL端口 // 设置SSL端口
if (this.port == -1) { if (this.port == -1) {
this.port = 80; this.port = 443;
} }
} else { } else {
sslConnection = false; sslConnection = false;
......
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