Panagiotis Triantafyllou

minor fixes

...@@ -36,12 +36,6 @@ ...@@ -36,12 +36,6 @@
36 <category android:name="android.intent.category.LAUNCHER" /> 36 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter> 37 </intent-filter>
38 </activity> 38 </activity>
39 -
40 - <activity
41 - android:name="ly.warp.sdk.activities.BaseFragmentActivity"
42 - android:exported="false"
43 - android:label="@string/title_activity_main"
44 - android:screenOrientation="portrait" />
45 </application> 39 </application>
46 40
47 <!-- For Huawei Push, only if we targetSdkVersion 30, comment if we are in Google build --> 41 <!-- For Huawei Push, only if we targetSdkVersion 30, comment if we are in Google build -->
......
...@@ -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' 5 + PUBLISH_VERSION = '4.5.4-cos'
6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
7 } 7 }
8 8
......
...@@ -53,6 +53,11 @@ ...@@ -53,6 +53,11 @@
53 android:screenOrientation="portrait" 53 android:screenOrientation="portrait"
54 android:theme="@android:style/Theme.Light.NoTitleBar" /> 54 android:theme="@android:style/Theme.Light.NoTitleBar" />
55 55
56 + <activity
57 + android:name="ly.warp.sdk.activities.BaseFragmentActivity"
58 + android:exported="false"
59 + android:screenOrientation="portrait" />
60 +
56 <!-- Service used for updating user's location. --> 61 <!-- Service used for updating user's location. -->
57 <service 62 <service
58 android:name="ly.warp.sdk.services.UpdateUserLocationService" 63 android:name="ly.warp.sdk.services.UpdateUserLocationService"
......