Skip to content

Commit

Permalink
updated package to niitish.build.com.freemium
Browse files Browse the repository at this point in the history
  • Loading branch information
NitishGadangi committed Aug 25, 2019
1 parent 720c29f commit 53427dc
Show file tree
Hide file tree
Showing 29 changed files with 5,840 additions and 31 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ android {
}
compileSdkVersion 28
defaultConfig {
applicationId "nitish.build.com.saavntest1"
applicationId "nitish.build.com.freemium"
manifestPlaceholders = [
onesignal_app_id : '0b1fc4f0-325e-4966-9256-0381774aa648',
onesignal_app_id : '8a727c51-fdf9-4b9c-9d10-a39849a7ec05',
// Project number pulled from dashboard, local value is ignored.
onesignal_google_project_number: 'REMOTE'
]
Expand Down
Binary file added app/debug/app-debug.apk
Binary file not shown.
1 change: 1 addition & 0 deletions app/debug/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"app-debug.apk","properties":{}}]
Binary file added app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package nitish.build.com.freemium;

import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("nitish.build.com.saavntest1", appContext.getPackageName());
}
}
24 changes: 12 additions & 12 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="nitish.build.com.saavntest1">
package="nitish.build.com.freemium">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand All @@ -19,31 +19,31 @@
tools:replace="android:usesCleartextTraffic,android:allowBackup">

<provider
android:name=".GenericFileProvider"
android:authorities="nitish.build.com.saavntest1.fileprovider"
android:name="nitish.build.com.freemium.GenericFileProvider"
android:authorities="nitish.build.com.freemium.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>

<activity android:name=".Settings_Alb" />
<activity android:name=".MorePage" />
<activity android:name=".Downloads_Page" />
<activity android:name="nitish.build.com.freemium.Settings_Alb" />
<activity android:name="nitish.build.com.freemium.MorePage" />
<activity android:name="nitish.build.com.freemium.Downloads_Page" />
<activity
android:name=".Search_Songs"
android:name="nitish.build.com.freemium.Search_Songs"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".SaavnWebView"
android:name="nitish.build.com.freemium.SaavnWebView"
android:screenOrientation="portrait" />
<activity
android:name=".Album_Song_List"
android:name="nitish.build.com.freemium.Album_Song_List"
android:screenOrientation="portrait" />
<activity android:name=".checksum" />
<activity android:name="nitish.build.com.freemium.checksum" />
<activity
android:name=".MainActivity"
android:name="nitish.build.com.freemium.MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -63,7 +63,7 @@
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/ad_id" />

<receiver android:name=".NotificationRecive" />
<receiver android:name="nitish.build.com.freemium.NotificationRecive" />
</application>

</manifest>
Loading

0 comments on commit 53427dc

Please sign in to comment.