-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from payatu/vedant
Vedant
- Loading branch information
Showing
60 changed files
with
11,477 additions
and
230 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
13:1.4.7:cc60397faac154890c9f2f4683bb70b6:29d6be3cab4d7bd22d0b0daa010a3ffd |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10,990 changes: 10,990 additions & 0 deletions
10,990
app/release/BugBazaar_v1.1.apk.cache/sources/6e/0000116e.java
Large diffs are not rendered by default.
Oops, something went wrong.
64 changes: 64 additions & 0 deletions
64
app/release/BugBazaar_v1.1.apk.cache/sources/8d/0000118d.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package com.BugBazaar.ui.ContactsPack; | ||
|
||
import android.content.Intent; | ||
import android.os.Bundle; | ||
import android.util.Log; | ||
import android.view.View; | ||
import android.widget.Button; | ||
import android.widget.EditText; | ||
import android.widget.TextView; | ||
import androidx.fragment.app.Fragment; | ||
import androidx.fragment.app.FragmentManager; | ||
import com.BugBazaar.R; | ||
import com.BugBazaar.ui.BaseActivity; | ||
import com.BugBazaar.ui.Fragments.QRCodeFragment; | ||
|
||
/* loaded from: classes.dex */ | ||
public class ReferUs extends BaseActivity { | ||
Button btnSendEmail; | ||
EditText edtEmailId; | ||
FragmentManager fragmentManager; | ||
Button openContactButton; | ||
|
||
/* JADX INFO: Access modifiers changed from: protected */ | ||
@Override // com.BugBazaar.ui.BaseActivity, androidx.fragment.app.FragmentActivity, androidx.activity.ComponentActivity, androidx.core.app.ComponentActivity, android.app.Activity | ||
public void onCreate(Bundle bundle) { | ||
super.onCreate(bundle); | ||
setContentView(R.layout.activity_refer_us); | ||
((TextView) findViewById(R.id.toolbarTitle)).setText("Refer-Us"); | ||
this.btnSendEmail = (Button) findViewById(R.id.btnSendEmail); | ||
this.edtEmailId = (EditText) findViewById(R.id.edtEmailId); | ||
this.openContactButton = (Button) findViewById(R.id.openContactButton); | ||
this.fragmentManager = getSupportFragmentManager(); | ||
String stringExtra = getIntent().getStringExtra("fragName"); | ||
Log.d("fragName", "Received fragName: " + stringExtra); | ||
if (stringExtra != null) { | ||
getSupportFragmentManager().beginTransaction().replace(R.id.qrfragment_placeholder, Fragment.instantiate(this, stringExtra, null)).commit(); | ||
} else { | ||
loadFragment(new QRCodeFragment()); | ||
} | ||
} | ||
|
||
public void openEmailApp(View view) { | ||
String obj = this.edtEmailId.getText().toString(); | ||
Intent intent = new Intent("android.intent.action.SEND"); | ||
intent.setType("message/rfc822"); | ||
intent.putExtra("android.intent.extra.EMAIL", new String[]{obj}); | ||
intent.putExtra("android.intent.extra.SUBJECT", "Invitation to join Bugbazaar!!"); | ||
intent.putExtra("android.intent.extra.TEXT", "Hey there, I'm using BugBazaar for all of my bug needs. \n \nCheck out our new application and you will never have to go back to any other shopping app. \n\nBugBazaar!! for all your vulnerabilty needs!!."); | ||
startActivity(Intent.createChooser(intent, "Email via: ")); | ||
this.edtEmailId.setText(""); | ||
} | ||
|
||
public void openSelectContacts(View view) { | ||
startActivity(new Intent(this, SelectContacts.class)); | ||
} | ||
|
||
private void loadFragment(Fragment fragment) { | ||
getSupportFragmentManager().beginTransaction().replace(R.id.qrfragment_placeholder, fragment).commit(); | ||
} | ||
|
||
public void onBackButtonClick(View view) { | ||
onBackPressed(); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
app/release/BugBazaar_v1.1.apk.cache/sources/96/00001196.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.BugBazaar.ui.Fragments; | ||
|
||
import android.os.Bundle; | ||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import androidx.fragment.app.Fragment; | ||
import com.BugBazaar.R; | ||
|
||
/* loaded from: classes.dex */ | ||
public class HiddenFragment extends Fragment { | ||
@Override // androidx.fragment.app.Fragment | ||
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) { | ||
return layoutInflater.inflate(R.layout.fragment_hidden, viewGroup, false); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
app/release/BugBazaar_v1.1.apk.cache/sources/97/00001197.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.BugBazaar.ui.Fragments; | ||
|
||
import android.os.Bundle; | ||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import androidx.fragment.app.Fragment; | ||
import com.BugBazaar.R; | ||
|
||
/* loaded from: classes.dex */ | ||
public class QRCodeFragment extends Fragment { | ||
@Override // androidx.fragment.app.Fragment | ||
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) { | ||
return layoutInflater.inflate(R.layout.fragment_qrcode, viewGroup, false); | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.