payu-intrepos / payu-non-seamless-react

Non-Seamless SDK for React Native
5 stars 9 forks source link

After installing this package i am getting this error while building my application #61

Open vikasis4 opened 1 year ago

vikasis4 commented 1 year ago

Task :app:processDebugMainManifest FAILED

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

See https://docs.gradle.org/7.5.1/userguide/command_line_interface.html#sec:command_line_warnings 118 actionable tasks: 4 executed, 114 up-to-date

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.

2: Task failed with an exception.

vikasis4 commented 1 year ago

This is my androidManisfest file code

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rankboost.live" xmlns:tools="http://schemas.android.com/tools" >

<application
  tools:replace="android:theme"
  tools:replace="android:usesCleartextTraffic"
  tools:node="replace"

  android:name=".MainApplication"
  android:label="@string/app_name"
  android:icon="@mipmap/ic_launcher"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:allowBackup="false"
  android:theme="@style/AppTheme">

  <service
     android:name="app.notifee.core.ForegroundService"
     android:foregroundServiceType="mediaProjection|camera|microphone" />

  <activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
    android:launchMode="singleTask"
    android:windowSoftInputMode="adjustResize"
    android:exported="true"
    android:showWhenLocked="true"
    android:turnScreenOn="true">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
  </activity>
</application>