Skip to content
This repository has been archived by the owner on Nov 13, 2021. It is now read-only.

version 0.19.2 without firebase #40

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions Movim/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
compileSdkVersion 30
compileSdkVersion 29

defaultConfig {
applicationId "com.movim.movim"
minSdkVersion 21
targetSdkVersion 30
versionCode 15
versionName "0.19"
targetSdkVersion 29
versionCode 17
versionName "0.19.2"
}

buildTypes {
Expand All @@ -21,9 +20,9 @@ android {
}

dependencies {
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation platform('com.google.firebase:firebase-bom:26.3.0')
implementation 'com.google.firebase:firebase-messaging'
}
//noinspection GradleCompatible
implementation 'com.android.support:support-v4:28.0.0'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:2.0.4'
}
37 changes: 8 additions & 29 deletions Movim/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,59 +14,38 @@

<application
android:allowBackup="true"
android:fullBackupOnly="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_logo"
android:roundIcon="@mipmap/ic_logo_round"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<service
android:name=".NotificationActivity"
android:enabled="true"
android:exported="true"></service>
<service
android:name=".NotificationService"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>

<meta-data
android:name="firebase_analytics_collection_enabled"
android:value="false" />

<activity
android:name=".ShareActivity"
<activity android:name=".ShareActivity"
android:label="@string/share_new_post"
android:launchMode="singleTask">
android:launchMode="singleTask"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />

<category android:name="android.intent.category.DEFAULT" />

<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<activity
android:name=".VisioActivity"
android:configChanges="orientation|screenSize"
android:label="@string/call"
android:launchMode="standard"
android:theme="@style/SplashTheme"
android:taskAffinity=".MainActivity"
android:theme="@style/SplashTheme" />
android:launchMode="standard" />
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:theme="@style/SplashTheme">
android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Loading