Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pratyaksh1610 committed Jul 15, 2022
1 parent 1110b83 commit 94d81c7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion MemeShare/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
}

defaultConfig {
applicationId "com.example.memeshare"
applicationId "com.pratyakshkhurana.memeshare"
minSdk 26
targetSdk 31
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.memeshare
package com.pratyakshkhurana.funmemes

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
4 changes: 2 additions & 2 deletions MemeShare/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.memeshare">
package="com.pratyakshkhurana.funmemes">

<!-- permissions for internet and storage-->
<uses-permission android:name="android.permission.INTERNET"/>
Expand All @@ -15,7 +15,7 @@
android:supportsRtl="true"
android:theme="@style/Theme.MemeShare">
<activity
android:name=".MainActivity"
android:name="com.pratyakshkhurana.funmemes.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
package com.example.memeshare
package com.pratyakshkhurana.funmemes

import android.content.ContentValues
import android.content.Intent
import android.graphics.Bitmap
import android.graphics.BitmapFactory
import android.graphics.Canvas
import android.graphics.drawable.Drawable
import android.net.Uri
import android.os.*
import android.provider.MediaStore
import android.util.Log
import android.view.View
import android.widget.Button
import android.widget.ImageView
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import androidx.cardview.widget.CardView
import androidx.core.app.ActivityCompat
import androidx.core.content.FileProvider
import com.android.volley.Request
import com.android.volley.toolbox.JsonObjectRequest
import com.android.volley.toolbox.Volley
Expand All @@ -30,7 +24,6 @@ import kotlinx.android.synthetic.main.activity_main.*
import java.io.File
import java.io.FileOutputStream
import java.io.OutputStream
import java.util.jar.Manifest


class MainActivity : AppCompatActivity() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.memeshare
package com.pratyakshkhurana.funmemes

import org.junit.Test

Expand Down

0 comments on commit 94d81c7

Please sign in to comment.