v class="ui basic small button"> Tree: fbc27843e9

41 Commits (fbc27843e9cfd7ba1041e7a11be1839b85984a15)

Author SHA1 Message Date
  朱海文 846ab52244 红米适配问题 4 years ago
  朱海文 9b99fd48a2 更换网络框架 4 years ago
  朱海文 bcdc586a73 本地记录1 4 years ago
  朱海文 9366441700 jumpTo代码抽取 4 years ago
  朱海文 2a8324e153 activity分包 4 years ago
  朱海文 010b43b98a 日报详情1 4 years ago
  朱海文 af7b3b7c9b 跳转视频变快 4 years ago
  朱海文 3e2c09b021 该删的删 4 years ago
  朱海文 1559a0fa75 player2增加逻辑 4 years ago
  朱海文 3e6185674f 自定video 4 years ago
  朱海文 ef2835b98d add SignInRecordActivity 4 years ago
  dabin 55264bcf4d [MOD]小米手机键盘弹出问题 4 years ago
  朱海文 2bf790b32f 微信登录接口优化 4 years ago
  朱海文 18739e2e56 Merge branch 'develop' of https://git.haitiand.cn/zhuhaiwen/zeropay into develop 4 years ago
  朱海文 2f22e2f4b1 领奖列表接口、绑定银行卡接口、去领奖等 4 years ago
  dabin 0deb83e842 [MOD]闪屏页拉伸问题 4 years ago
  朱海文 848c7f9173 nill 4 years ago
  朱海文 fd2289fbae 领奖界面、确认银行信息、提交完毕银行信息fragment 4 years ago
  朱海文 8fbc6d9488 Merge branch 'develop' into feature/领奖页面 4 years ago
  朱海文 3c093dc1f7 原生微信登录、初步 4 years ago
  dabin 7947ebd9f5 [ADD]长图大图预览 4 years ago
  朱海文 98da4e5832 初步 4 years ago
  朱海文 08d9d613c6 报错图 4 years ago
  朱海文 ecb1f1cb76 播放视频、答题卡 4 years ago
  dabin e2fae7f5e9 [ADD]混淆 4 years ago
  dabin 5889c67db1 [ADD]游记详情界面 4 years ago
  dabin 62a1602d74 [ADD]启动页 4 years ago
  dabin 76d182335c [MOD]主界面修改 4 years ago
  dabin b4741a46fc [ADD]签名 4 years ago
  dabin 419bedf022 [MOD]APK的下载路径,下载内容的保存路径 4 years ago
  dabin ffec33cff9 [ADD]友盟统计 4 years ago
  朱海文 261866e052 Merge branch 'feature/去打卡界面' into develop 4 years ago
  朱海文 41db420780 增加视频播放界面 4 years ago
  朱海文 8186471523 Merge branch 'feature/去打卡界面' into develop 4 years ago
  朱海文 970ed7c55c 跳转到webview 4 years ago
  dabin 2791e61fbf [MOD]跳转到图片选择界面 4 years ago
  dabin 3a73efb540 Merge remote-tracking branch 'origin/develop' into develop 4 years ago
  dabin c09c12f5d4 [MOD]图片选择 4 years ago
  朱海文 a1cd0b5ef5 权限 4 years ago
  朱海文 813aece4b6 baseactivity、baseDialog 4 years ago
  朱海文 b02799cb3b init 4 years ago
zeropay - Gogs: Go Git Service

0元购Android端

build.gradle 5.9KB

    apply plugin: 'com.android.application' //apply plugin: 'com.mob.sdk' // //MobSDK { // appKey "304fe66c9be05" // appSecret "ae05a16e089eef959d32174f4a001637" // ShareSDK { // loopShare true // devInfo { // // 微信开放平台链接: https://open.weixin.qq.com/cgi-bin/appdetail?t=manage/detail&type=app&lang=zh_CN&token=7d66745466c2986b0e2c10e6dd40ac82672222f5&appid=wx9ce6dfd102de332c // Wechat { // appId "wx00bb0933b4fdb159" // appSecret "801cb11459e2d0fdb06df516cf91755b" // userName "gh_afb25ac019c9" // path "pages/index/index.html?id=1" // withShareTicket true // miniprogramType 2 // } // // . . . 还有其他平台配置 // } // } //} android { compileSdkVersion 29 buildToolsVersion "30.0.1" defaultConfig { applicationId "com.junxin.zeropay" minSdkVersion 19 targetSdkVersion 29 versionCode 4 versionName "1.3.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" multiDexEnabled true manifestPlaceholders = [UMENG_CHANNEL_VALUE: "umeng"]//添加一个默认渠道号 flavorDimensions "versionCode" } /* 此配置能使Test能够调用Android的Api */ testOptions { unitTests.returnDefaultValues = true } signingConfigs { appkey { storeFile rootProject.file('app/zeropay.jks') storePassword "junxin" keyAlias "zeropay" keyPassword "junxin" } } buildTypes { release { // 开启混淆 minifyEnabled true // Zipalign压缩优化 zipAlignEnabled true // 移除无用的资源文件 shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' signingConfig signingConfigs.appkey } debug { // 开启混淆 minifyEnabled false // Zipalign压缩优化 zipAlignEnabled false // 移除无用的资源文件 shrinkResources false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' signingConfig signingConfigs.appkey } } productFlavors { yingyongbao {} xiaomi {} huawei {} oppo {} junxin {} } productFlavors.all { flavor -> flavor.manifestPlaceholders = [UMENG_CHANNEL_VALUE: name] } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' //material MD implementation 'com.google.android.material:material:1.1.0' //recyclerview implementation "androidx.recyclerview:recyclerview:1.1.0" // For control over item selection of both touch and mouse driven selection implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc01" //glide implementation 'com.github.bumptech.glide:glide:4.11.0' //gson implementation 'com.google.code.gson:gson:2.8.5' //eventbus implementation 'org.greenrobot:eventbus:3.1.1' //网络请求的依赖 implementation 'com.squareup.retrofit2:retrofit:2.6.0' implementation 'com.squareup.retrofit2:converter-gson:2.6.0' implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' implementation 'com.squareup.okhttp3:logging-interceptor:3.14.2' //图片选择器 implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.5.8' //banner implementation "com.youth.banner:banner:2.1.0" //cardview implementation "androidx.cardview:cardview:1.0.0" //友盟基础组件库包含统计SDK implementation "com.umeng.umsdk:common:9.1.0" // asms包依赖(必选) implementation 'com.umeng.umsdk:asms:1.1.3' // native crash包依赖(必选) implementation "com.umeng.umsdk:crash:0.0.4" //如您不在U-App的集成中加入OAID库,可能会导致U-App面向Android Q系统的新增、启动、活跃、留存等指标减少,因此,建议您接入OAID库。 implementation 'com.umeng.umsdk:oaid_lenovo:1.0.0' // (可选) implementation 'com.umeng.umsdk:oaid_mi:1.0.0' // (可选) implementation 'com.umeng.umsdk:oaid_oppo:1.0.4' // (可选) implementation 'com.umeng.umsdk:oaid_vivo:1.0.0.1' // (可选) //butterknife implementation 'com.jakewharton:butterknife:10.2.1' annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1' //今日头条适配 implementation 'me.jessyan:autosize:1.2.1' implementation 'com.github.lzyzsd:jsbridge:1.0.4' //权限申请 implementation 'com.github.tbruyelle:rxpermissions:0.12' implementation 'io.reactivex.rxjava3:rxjava:3.0.4' implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' //状态栏 // implementation 'com.gyf.immersionbar:immersionbar:3.0.0' //打卡完成对勾控件 implementation 'com.github.ChengangFeng:TickView:v1.0.2' //S3 implementation 'com.amazonaws:aws-android-sdk-core:2.17.1' implementation 'com.amazonaws:aws-android-sdk-s3:2.3.8' //长图大图预览 implementation 'com.github.chrisbanes:PhotoView:2.3.0' //微信登录 api 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+' //下拉刷新 implementation 'com.scwang.smart:refresh-layout-kernel:2.0.1' implementation 'com.scwang.smart:refresh-header-classics:2.0.1' implementation 'com.shuyu:GSYVideoPlayer:7.1.6' }
zeropay - Gogs: Go Git Service

0元购Android端

gradlew.bat 2.8KB

    @rem @rem Copyright 2015 the original author or authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem @if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :init @rem Get command-line arguments, handling Windows variants if not "%OS%" == "Windows_NT" goto win9xME_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar @rem Execute Gradle "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell if "%ERRORLEVEL%"=="0" goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 exit /b 1 :mainEnd if "%OS%"=="Windows_NT" endlocal :omega
zeropay - Gogs: Go Git Service

0元购Android端

朱海文 e1efe522db a 4 jaren geleden
..
src e1efe522db a 4 jaren geleden
.gitignore b02799cb3b init 4 jaren geleden
build.gradle 941c231302 start dev v1.3 4 jaren geleden
pack.txt 3a502813d0 [ADD]登录弹窗 4 jaren geleden
proguard-rules.pro 3e6185674f 自定video 4 jaren geleden
zeropay.jks b4741a46fc [ADD]签名 4 jaren geleden
zeropay.jks.old b4741a46fc [ADD]签名 4 jaren geleden
Sign In - Gogs: Go Git Service

Sign In