Commit 82a405e5b2dfce52828191dd1f7352ccc1d02d9b

Authored by 袁思汶
1 parent fee26002

分享IM优化

OutSide_Share/src/main/java/com/cnlive/outside_share/activity/ShareIMActivity.java
... ... @@ -103,7 +103,6 @@ public class ShareIMActivity extends AppCompatActivity {
103 103 mutil = getIntent().getStringArrayListExtra("mutil");
104 104 outTyp = getIntent().getStringExtra("outType");
105 105 isQ = Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q;
106   - checkIntent();
107 106 ImageView imageview = findViewById(R.id.immmmm);
108 107 rotateAnimation = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
109 108 rotateAnimation.setFillAfter(true);
... ... @@ -111,6 +110,7 @@ public class ShareIMActivity extends AppCompatActivity {
111 110 rotateAnimation.setRepeatCount(-1);
112 111 rotateAnimation.setInterpolator(new LinearInterpolator());
113 112 imageview.startAnimation(rotateAnimation);
  113 + checkIntent();
114 114 }
115 115  
116 116  
... ...
config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "1.0.3.1",
  24 + version: "1.0.3.2",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.outside_share",
27 27 //Lib库名称
... ...