Showing
4 changed files
with
11 additions
and
2 deletions
... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | ... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' |
2 | 2 | ||
3 | ext { | 3 | ext { |
4 | PUBLISH_GROUP_ID = 'ly.warp' | 4 | PUBLISH_GROUP_ID = 'ly.warp' |
5 | - PUBLISH_VERSION = '4.5.4-cosbeta92' | 5 | + PUBLISH_VERSION = '4.5.4-cosbeta93' |
6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
7 | } | 7 | } |
8 | 8 | ... | ... |
... | @@ -51,7 +51,7 @@ | ... | @@ -51,7 +51,7 @@ |
51 | android:name="ly.warp.sdk.activities.GiftsForYouActivity" | 51 | android:name="ly.warp.sdk.activities.GiftsForYouActivity" |
52 | android:exported="false" | 52 | android:exported="false" |
53 | android:screenOrientation="portrait" | 53 | android:screenOrientation="portrait" |
54 | - android:theme="@style/SDKAppTheme" /> | 54 | + android:theme="@style/GFYAppTheme" /> |
55 | 55 | ||
56 | <activity | 56 | <activity |
57 | android:name="ly.warp.sdk.activities.MoreForYouActivity" | 57 | android:name="ly.warp.sdk.activities.MoreForYouActivity" | ... | ... |
... | @@ -25,6 +25,7 @@ import java.io.Serializable; | ... | @@ -25,6 +25,7 @@ import java.io.Serializable; |
25 | import java.util.ArrayList; | 25 | import java.util.ArrayList; |
26 | import java.util.HashSet; | 26 | import java.util.HashSet; |
27 | import java.util.LinkedHashSet; | 27 | import java.util.LinkedHashSet; |
28 | +import java.util.Objects; | ||
28 | import java.util.Set; | 29 | import java.util.Set; |
29 | 30 | ||
30 | import io.github.inflationx.viewpump.ViewPumpContextWrapper; | 31 | import io.github.inflationx.viewpump.ViewPumpContextWrapper; |
... | @@ -76,6 +77,7 @@ public class GiftsForYouActivity extends AppCompatActivity implements View.OnCli | ... | @@ -76,6 +77,7 @@ public class GiftsForYouActivity extends AppCompatActivity implements View.OnCli |
76 | @Override | 77 | @Override |
77 | public void onCreate(Bundle savedInstanceState) { | 78 | public void onCreate(Bundle savedInstanceState) { |
78 | super.onCreate(savedInstanceState); | 79 | super.onCreate(savedInstanceState); |
80 | +// Objects.requireNonNull(getSupportActionBar()).hide(); | ||
79 | setContentView(R.layout.activity_gifts_for_you); | 81 | setContentView(R.layout.activity_gifts_for_you); |
80 | mSecondsHandler = new Handler(); | 82 | mSecondsHandler = new Handler(); |
81 | 83 | ... | ... |
... | @@ -32,4 +32,11 @@ | ... | @@ -32,4 +32,11 @@ |
32 | <item name="android:windowLightStatusBar">true</item> | 32 | <item name="android:windowLightStatusBar">true</item> |
33 | </style> | 33 | </style> |
34 | 34 | ||
35 | + <style name="GFYAppTheme" parent="Theme.AppCompat.Light"> | ||
36 | + <item name="android:statusBarColor">@android:color/white</item> | ||
37 | + <item name="android:windowLightStatusBar">true</item> | ||
38 | + <item name="windowActionBar">false</item> | ||
39 | + <item name="windowNoTitle">true</item> | ||
40 | + </style> | ||
41 | + | ||
35 | </resources> | 42 | </resources> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment