Commit 74fd7d45 authored by mengcuiguang's avatar mengcuiguang

1.2.3 添加小满科技

parent 8f12c68e
...@@ -15,8 +15,8 @@ android { ...@@ -15,8 +15,8 @@ android {
applicationId "com.mints.goodmoney" applicationId "com.mints.goodmoney"
minSdkVersion rootProject.ext.androidMinSdkVersion minSdkVersion rootProject.ext.androidMinSdkVersion
targetSdkVersion rootProject.ext.androidTargetSdkVersion targetSdkVersion rootProject.ext.androidTargetSdkVersion
versionCode 23 versionCode 24
versionName "1.2.2" versionName "1.2.3"
flavorDimensions "default" flavorDimensions "default"
// dex突破65535的限制 // dex突破65535的限制
......
...@@ -9,7 +9,6 @@ import cn.jpush.android.api.JPushInterface ...@@ -9,7 +9,6 @@ import cn.jpush.android.api.JPushInterface
import com.downloader.PRDownloader import com.downloader.PRDownloader
import com.downloader.PRDownloaderConfig import com.downloader.PRDownloaderConfig
import com.mints.goodmoney.manager.BxmManager.initBxm import com.mints.goodmoney.manager.BxmManager.initBxm
import com.mints.goodmoney.ui.widgets.CircleImageView
import com.mob.MobSDK import com.mob.MobSDK
/** /**
......
...@@ -3,7 +3,6 @@ package com.mints.goodmoney.common; ...@@ -3,7 +3,6 @@ package com.mints.goodmoney.common;
/** /**
* 描述:配置app设置开关 * 描述:配置app设置开关
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 17:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public class AppConfig { public class AppConfig {
...@@ -84,11 +83,11 @@ public class AppConfig { ...@@ -84,11 +83,11 @@ public class AppConfig {
/** /**
* csjFull 剩余广告播放数 * csjFull 剩余广告播放数
*/ */
public static int csjFullVideoAdCount = 5; public static int csjFullVideoAdCount = 0;
/** /**
* flVideo 剩余广告播放数 * flVideo 剩余广告播放数
*/ */
public static int flVideoAdCount = 5; public static int flVideoAdCount = 0;
/** /**
* shVideo 剩余广告播放数 * shVideo 剩余广告播放数
*/ */
......
...@@ -251,4 +251,8 @@ object Constant { ...@@ -251,4 +251,8 @@ object Constant {
// 蘑菇星球引导页 // 蘑菇星球引导页
const val MOKU_FLAG_GUIDE = "moku_flag_guide" const val MOKU_FLAG_GUIDE = "moku_flag_guide"
//page
const val ACTIVITY_ID = "activity_id"
const val ACTIVITY_TITLE = "activity_title"
} }
...@@ -44,6 +44,7 @@ public class TtCsjAdManager { ...@@ -44,6 +44,7 @@ public class TtCsjAdManager {
public static String TT_AD_VEDIO_SMALLHOMEVEDIO = "945744186";// 短视频翻倍 public static String TT_AD_VEDIO_SMALLHOMEVEDIO = "945744186";// 短视频翻倍
public static String TT_AD_VEDIO_KYLVEDIO = "945791766";// 来电秀视频 public static String TT_AD_VEDIO_KYLVEDIO = "945791766";// 来电秀视频
public static String TT_AD_VEDIO_READ = "945997554";// 听读 public static String TT_AD_VEDIO_READ = "945997554";// 听读
public static String TT_AD_VEDIO_XIAOMAN = "946012845";// 小满科技
/*全屏视频*/ /*全屏视频*/
public static String TT_AD_FULLVEDIO_ALL = "945752969";// 通用 public static String TT_AD_FULLVEDIO_ALL = "945752969";// 通用
/*信息流*/ /*信息流*/
......
...@@ -36,6 +36,7 @@ object YlhAdManager { ...@@ -36,6 +36,7 @@ object YlhAdManager {
var YLH_AD_VEDIO_HOMEVEDIO_POSTID= "4051451341464487" // 首页视频翻倍 var YLH_AD_VEDIO_HOMEVEDIO_POSTID= "4051451341464487" // 首页视频翻倍
var YLH_AD_VEDIO_SMALLHOMEVEDIO_POSTID= "9051152341362610" // 短视频翻倍 var YLH_AD_VEDIO_SMALLHOMEVEDIO_POSTID= "9051152341362610" // 短视频翻倍
var YLH_AD_VEDIO_KYLVEDIO_POSTID= "8001950728967276" // 来电秀视频 var YLH_AD_VEDIO_KYLVEDIO_POSTID= "8001950728967276" // 来电秀视频
var YLH_AD_VEDIO_XIAOMAN_POSTID= "3081971852112087" // 小满科技
/*信息流*/ /*信息流*/
var YLH_AD_NATIVEEXPRESS_JULEYUN = "8041941770890627" //聚乐云 var YLH_AD_NATIVEEXPRESS_JULEYUN = "8041941770890627" //聚乐云
......
...@@ -5,7 +5,6 @@ import java.io.Serializable; ...@@ -5,7 +5,6 @@ import java.io.Serializable;
/** /**
* 描述:BaseResponse * 描述:BaseResponse
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 10:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public class BaseResponse<T> implements Serializable { public class BaseResponse<T> implements Serializable {
......
...@@ -3,7 +3,6 @@ package com.mints.goodmoney.mvp.presenters; ...@@ -3,7 +3,6 @@ package com.mints.goodmoney.mvp.presenters;
/** /**
* 描述:Presenter * 描述:Presenter
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 10:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public interface Presenter<V> { public interface Presenter<V> {
......
...@@ -43,7 +43,6 @@ import rx.android.schedulers.AndroidSchedulers; ...@@ -43,7 +43,6 @@ import rx.android.schedulers.AndroidSchedulers;
/** /**
* 描述:版本更新 * 描述:版本更新
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 10:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public class VersionUpdatePresenter { public class VersionUpdatePresenter {
......
...@@ -5,7 +5,6 @@ import com.mints.goodmoney.MintsApplication; ...@@ -5,7 +5,6 @@ import com.mints.goodmoney.MintsApplication;
/** /**
* 描述:BaseView * 描述:BaseView
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 17:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public interface BaseView { public interface BaseView {
......
...@@ -318,9 +318,8 @@ class DrawcashActivity : BaseActivity(), ...@@ -318,9 +318,8 @@ class DrawcashActivity : BaseActivity(),
"ksWeight:${data.kS_VEDIO}" "ksWeight:${data.kS_VEDIO}"
) )
// 广告视频数 // 广告视频数
AppConfig.csjVideoAdCount = 10 AppConfig.csjVideoAdCount = 5
AppConfig.ylhAdCount = 10 AppConfig.ylhAdCount = 5
AppConfig.csjFullVideoAdCount = 10
} }
/** /**
......
...@@ -21,7 +21,6 @@ import java.util.List; ...@@ -21,7 +21,6 @@ import java.util.List;
/** /**
* @author Pinger * @author Pinger
* @since 2017/3/8 0008 下午 6:29
* ViewPager基类适配器,需要传入Item视图和数据 * ViewPager基类适配器,需要传入Item视图和数据
*/ */
public abstract class BannerBaseAdapter<T> extends PagerAdapter { public abstract class BannerBaseAdapter<T> extends PagerAdapter {
......
...@@ -949,8 +949,8 @@ class MyFragment : BaseFragment(), ...@@ -949,8 +949,8 @@ class MyFragment : BaseFragment(),
Constant.HOT_ACTIVITY_SHEEP -> { Constant.HOT_ACTIVITY_SHEEP -> {
XmManager.exprotClick(hotBean.xmPlaceId) XmManager.exprotClick(hotBean.xmPlaceId)
val bundle = Bundle() val bundle = Bundle()
bundle.putString(Constant.MAIN_CARRIER_TITLE, hotBean.title) bundle.putString(Constant.ACTIVITY_TITLE, hotBean.title)
bundle.putString(Constant.MAIN_CARRIER_TYPE, hotBean.xmPlaceId) bundle.putString(Constant.ACTIVITY_ID, hotBean.xmPlaceId)
readyGo(XiaomanActivity::class.java, bundle) readyGo(XiaomanActivity::class.java, bundle)
} }
Constant.HOT_ACTIVITY_WATER -> { Constant.HOT_ACTIVITY_WATER -> {
...@@ -1284,6 +1284,7 @@ class MyFragment : BaseFragment(), ...@@ -1284,6 +1284,7 @@ class MyFragment : BaseFragment(),
AppConfig.shVideoAdCount = data.vedioRules.corAl_VIDEO.surplus AppConfig.shVideoAdCount = data.vedioRules.corAl_VIDEO.surplus
AppConfig.ksVideoAdCount = data.vedioRules.kS_VEDIO.surplus AppConfig.ksVideoAdCount = data.vedioRules.kS_VEDIO.surplus
AppConfig.rtaVideoAdCount = data.vedioRules.rtA_VEDIO.surplus AppConfig.rtaVideoAdCount = data.vedioRules.rtA_VEDIO.surplus
AppConfig.csjFullVideoAdCount = data.vedioRules.csjfulL_VEDIO.surplus
LogUtil.d(TAG, "首页视频数:csjCount:${AppConfig.csjVideoAdCount} " + LogUtil.d(TAG, "首页视频数:csjCount:${AppConfig.csjVideoAdCount} " +
"ylhCount:${AppConfig.ylhAdCount} " + "ylhCount:${AppConfig.ylhAdCount} " +
"sdhzCount:${AppConfig.wnVideoAdCount} " + "sdhzCount:${AppConfig.wnVideoAdCount} " +
......
...@@ -3,7 +3,6 @@ package com.mints.goodmoney.ui.widgets; ...@@ -3,7 +3,6 @@ package com.mints.goodmoney.ui.widgets;
/* /*
* Author: renjinlong * Author: renjinlong
* Email: chinarenlong@foxmail.com * Email: chinarenlong@foxmail.com
* Date: 2017/8/15
* Description: * Description:
*/ */
...@@ -38,7 +37,6 @@ import java.lang.reflect.Field; ...@@ -38,7 +37,6 @@ import java.lang.reflect.Field;
/** /**
* @author Pinger * @author Pinger
* @since 2017/3/8 0008 下午 3:26
* 自定义无限轮转的海报控件,抽离了适配器和滑动事件,更加轻便。 * 自定义无限轮转的海报控件,抽离了适配器和滑动事件,更加轻便。
* 请在布局使用当前类,相关属性可以通过布局或者代码设置, * 请在布局使用当前类,相关属性可以通过布局或者代码设置,
* 适配器继承BannerBaseAdapter,指定数据类型,填充布局即可 * 适配器继承BannerBaseAdapter,指定数据类型,填充布局即可
......
...@@ -10,7 +10,6 @@ import androidx.annotation.StyleRes; ...@@ -10,7 +10,6 @@ import androidx.annotation.StyleRes;
/** /**
* 描述:dialog屏幕适配 * 描述:dialog屏幕适配
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 17:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public abstract class BaseDialog extends Dialog { public abstract class BaseDialog extends Dialog {
......
...@@ -18,7 +18,6 @@ import com.mints.goodmoney.R; ...@@ -18,7 +18,6 @@ import com.mints.goodmoney.R;
/** /**
* 描述:加载中dialog * 描述:加载中dialog
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 17:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public class LoadingDialog extends Dialog { public class LoadingDialog extends Dialog {
......
...@@ -11,7 +11,6 @@ import static com.mints.goodmoney.ui.widgets.seekbar.BubbleUtils.sp2px; ...@@ -11,7 +11,6 @@ import static com.mints.goodmoney.ui.widgets.seekbar.BubbleUtils.sp2px;
/** /**
* config BubbleSeekBar's attributes * config BubbleSeekBar's attributes
* <p/> * <p/>
* Created by woxingxiao on 2017-03-14.
*/ */
public class BubbleConfigBuilder { public class BubbleConfigBuilder {
......
...@@ -4,7 +4,6 @@ import android.animation.ValueAnimator; ...@@ -4,7 +4,6 @@ import android.animation.ValueAnimator;
import android.widget.ImageView; import android.widget.ImageView;
/** /**
* Created by cretin on 2017/12/27.
* 用于回调动画过程和结果 * 用于回调动画过程和结果
*/ */
......
...@@ -27,10 +27,6 @@ import com.mints.goodmoney.ui.widgets.wheelsruf.listener.RotateListener; ...@@ -27,10 +27,6 @@ import com.mints.goodmoney.ui.widgets.wheelsruf.listener.RotateListener;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
/**
* Created by cretin on 2017/12/26.
*/
public class WheelSurfPanView extends View { public class WheelSurfPanView extends View {
private Context mContext; private Context mContext;
//记录视图的大小 //记录视图的大小
......
...@@ -19,10 +19,6 @@ import com.mints.goodmoney.ui.widgets.wheelsruf.listener.RotateListener; ...@@ -19,10 +19,6 @@ import com.mints.goodmoney.ui.widgets.wheelsruf.listener.RotateListener;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
/**
* Created by cretin on 2017/12/26.
*/
public class WheelSurfView extends RelativeLayout { public class WheelSurfView extends RelativeLayout {
//当前的圆盘VIew //当前的圆盘VIew
private WheelSurfPanView mWheelSurfPanView; private WheelSurfPanView mWheelSurfPanView;
......
...@@ -4,10 +4,6 @@ import android.content.Context; ...@@ -4,10 +4,6 @@ import android.content.Context;
import android.graphics.Paint; import android.graphics.Paint;
import android.view.View; import android.view.View;
/**
* Created by littlejie on 2017/2/22.
*/
public class MiscUtil { public class MiscUtil {
/** /**
......
...@@ -15,8 +15,6 @@ import java.util.List; ...@@ -15,8 +15,6 @@ import java.util.List;
/** /**
* Desction:授权工具类 * Desction:授权工具类
* Author:pengjianbo
* Date:2017/1/15 AM2:39
*/ */
public class PermissionUtils { public class PermissionUtils {
......
...@@ -16,7 +16,6 @@ import com.mints.goodmoney.R; ...@@ -16,7 +16,6 @@ import com.mints.goodmoney.R;
/** /**
* 描述:Toast * 描述:Toast
* 作者:孟崔广 * 作者:孟崔广
* 时间:2017/10/10 17:51
* 邮箱:mengcga@163.com * 邮箱:mengcga@163.com
*/ */
public class ToastUtil { public class ToastUtil {
......
...@@ -181,7 +181,6 @@ public class ToolUtil { ...@@ -181,7 +181,6 @@ public class ToolUtil {
* 数字格式化显示 * 数字格式化显示
* 小于万默认显示 大于万以1.7万方式显示最大是9999.9万 * 小于万默认显示 大于万以1.7万方式显示最大是9999.9万
* 大于亿以1.1亿方式显示最大没有限制都是亿单位 * 大于亿以1.1亿方式显示最大没有限制都是亿单位
* make by dongxh 2017年12月28日上午10:05:22
* </pre> * </pre>
* *
* @param num 格式化的数字 * @param num 格式化的数字
......
...@@ -53,8 +53,8 @@ buildscript { ...@@ -53,8 +53,8 @@ buildscript {
url 'http://maven.aliyun.com/nexus/content/repositories/releases/' url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
} }
// 添加小满科技
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' } maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com"} maven { url "https://maven.google.com"}
maven { url "https://maven.linzhuxin.com/repository/lzoom_read_sdk_prd/"} maven { url "https://maven.linzhuxin.com/repository/lzoom_read_sdk_prd/"}
} }
......
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