diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..aa724b7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..8a38e6d
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+Truth and Dare
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..fb7f4a8
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..a0de2a1
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..112ebc6
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..63d8f14
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,54 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ namespace 'com.status.truthanddare'
+ compileSdk 33
+
+ defaultConfig {
+ applicationId "com.status.truthanddare"
+ minSdk 23
+ targetSdk 33
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.appcompat:appcompat:1.6.0'
+ implementation 'com.google.android.material:material:1.8.0'
+ implementation 'com.amitshekhar.android:android-networking:1.0.2'
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
+ testImplementation 'junit:junit:4.13.2'
+ implementation "com.github.smarteist:autoimageslider:1.3.9"
+
+// dependency for loading image from url
+
+ implementation "com.github.bumptech.glide:glide:4.11.0"
+ //op
+
+ implementation "androidx.viewpager2:viewpager2:1.0.0"
+
+//rounded imageview
+ implementation 'com.makeramen:roundedimageview:2.3.0'
+
+
+ //ynha tk
+ androidTestImplementation 'androidx.test.ext:junit:1.1.5'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
+}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/app/src/androidTest/java/com/status/truthanddare/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/status/truthanddare/ExampleInstrumentedTest.java
new file mode 100644
index 0000000..8e96050
--- /dev/null
+++ b/app/src/androidTest/java/com/status/truthanddare/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package com.status.truthanddare;
+
+import android.content.Context;
+
+import androidx.test.platform.app.InstrumentationRegistry;
+import androidx.test.ext.junit.runners.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 Testing documentation
+ */
+@RunWith(AndroidJUnit4.class)
+public class ExampleInstrumentedTest {
+ @Test
+ public void useAppContext() {
+ // Context of the app under test.
+ Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
+ assertEquals("com.status.truthanddare", appContext.getPackageName());
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..b4cbc82
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/ic_launcher-playstore.png b/app/src/main/ic_launcher-playstore.png
new file mode 100644
index 0000000..c27dbe4
Binary files /dev/null and b/app/src/main/ic_launcher-playstore.png differ
diff --git a/app/src/main/java/com/status/truthanddare/Adapter/SliderAdapter.java b/app/src/main/java/com/status/truthanddare/Adapter/SliderAdapter.java
new file mode 100644
index 0000000..3cecf72
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/Adapter/SliderAdapter.java
@@ -0,0 +1,70 @@
+package com.status.truthanddare.Adapter;
+
+import static android.media.CamcorderProfile.get;
+
+import android.os.Handler;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import androidx.annotation.NonNull;
+import androidx.recyclerview.widget.RecyclerView;
+import androidx.viewpager2.widget.ViewPager2;
+
+
+import com.makeramen.roundedimageview.RoundedImageView;
+import com.status.truthanddare.R;
+import com.status.truthanddare.modelclass.ImageSlider;
+
+import java.util.List;
+
+public class SliderAdapter extends RecyclerView.Adapter {
+ private final List sliderItems;
+ Handler ImageSlider=new Handler();
+ private final ViewPager2 viewPager2;
+
+ public SliderAdapter(List sliderItems, ViewPager2 viewPager2) {
+ this.sliderItems=sliderItems;
+ this.viewPager2=viewPager2;
+ }
+
+ @NonNull
+ @Override
+ public SliderViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
+ return new SliderViewHolder(
+ LayoutInflater.from(parent.getContext()).inflate(
+ R.layout.sliderimage, parent, false
+ ) );
+ }
+ @Override
+ public void onBindViewHolder(@NonNull SliderViewHolder holder, int position) {
+ holder.setImage(sliderItems.get(position));
+ if (position == sliderItems.size()- 2){
+ viewPager2.post(runnable);
+ }
+ }
+ @Override
+ public int getItemCount() {
+ return sliderItems.size();
+ }
+ class SliderViewHolder extends RecyclerView.ViewHolder {
+ private RoundedImageView imageView;
+ SliderViewHolder(@NonNull View itemView) {
+ super(itemView);
+ imageView = itemView.findViewById(R.id.imageSlide);
+ }
+ void setImage(ImageSlider sliderItems){
+//use glide or picasso in case you get image from internet
+ imageView.setImageResource(sliderItems.getImage());
+ }
+ }
+ private Runnable runnable = new Runnable() {
+ @Override
+ public void run() {
+ sliderItems.addAll(sliderItems);
+ notifyDataSetChanged();
+ }
+ };
+}
+
+
diff --git a/app/src/main/java/com/status/truthanddare/ApiCalling.java b/app/src/main/java/com/status/truthanddare/ApiCalling.java
new file mode 100644
index 0000000..6948b95
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/ApiCalling.java
@@ -0,0 +1,108 @@
+package com.status.truthanddare;
+
+import android.content.Context;
+import android.util.Log;
+import android.widget.Toast;
+
+import com.androidnetworking.AndroidNetworking;
+import com.androidnetworking.common.Priority;
+import com.androidnetworking.error.ANError;
+import com.androidnetworking.interfaces.JSONObjectRequestListener;
+import org.json.JSONException;
+import org.json.JSONObject;
+
+public class ApiCalling {
+ static final String TRUTH="https://api.truthordarebot.xyz/v1/truth";
+ static final String DARE="https://api.truthordarebot.xyz/v1/dare";
+ Context context;
+ public static String LANGUAGE="ENG";
+
+ public String getLANGUAGE() {
+ return LANGUAGE;
+ }
+
+ public void setLANGUAGE(String LANGUAGE) {
+ ApiCalling.LANGUAGE = LANGUAGE;
+ }
+
+
+ String ANSWER=null;
+
+ ApiCalling(Context context){
+
+ this.context=context;
+ Toast.makeText(context, getLANGUAGE(), Toast.LENGTH_SHORT).show();
+
+ }
+
+ void apiCallingp() {
+
+ LANGUAGE= getLANGUAGE();
+
+ AndroidNetworking.initialize(context);
+ AndroidNetworking.get(TRUTH).setPriority(Priority.HIGH).build().getAsJSONObject(new JSONObjectRequestListener() {
+ @Override
+ public void onResponse(JSONObject response) {
+ Log.d("Response", "Response working");
+ try {
+
+ if (LANGUAGE.equals("ENG")) {
+ ANSWER = response.getString("question");
+ } else {
+ JSONObject obj = new JSONObject();
+ obj = response.getJSONObject("translations");
+ ANSWER = obj.getString(LANGUAGE);
+
+ }
+
+
+ } catch (JSONException e) {
+ throw new RuntimeException(e);
+ }
+ }
+
+ @Override
+ public void onError(ANError anError) {
+ Log.d("Response", anError.toString());
+ Toast.makeText(context, "Error", Toast.LENGTH_SHORT).show();
+ }
+ });
+ }
+ public void dareAns(){
+ AndroidNetworking.initialize(context);
+ AndroidNetworking.get(DARE).setPriority(Priority.HIGH).build().getAsJSONObject(new JSONObjectRequestListener() {
+ @Override
+ public void onResponse(JSONObject response) {
+ Log.d("Response", "Response working");
+ try {
+
+ if (LANGUAGE.equals("ENG")) {
+ ANSWER = response.getString("question");
+ } else {
+ JSONObject obj = new JSONObject();
+ obj = response.getJSONObject("translations");
+ ANSWER = obj.getString(LANGUAGE);
+
+ }
+
+
+ } catch (JSONException e) {
+ throw new RuntimeException(e);
+ }
+ }
+
+ @Override
+ public void onError(ANError anError) {
+ Log.d("Response", anError.toString());
+ Toast.makeText(context, "Error", Toast.LENGTH_SHORT).show();
+ }
+ });
+
+ }
+ public String answer(){
+ return ANSWER;
+ }
+
+
+
+}
diff --git a/app/src/main/java/com/status/truthanddare/BottomSheet.java b/app/src/main/java/com/status/truthanddare/BottomSheet.java
new file mode 100644
index 0000000..201a689
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/BottomSheet.java
@@ -0,0 +1,151 @@
+package com.status.truthanddare;
+
+import android.annotation.SuppressLint;
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.AdapterView;
+import android.widget.Button;
+import android.widget.Spinner;
+import android.widget.Toast;
+
+import androidx.appcompat.app.AppCompatDelegate;
+
+import com.google.android.material.bottomsheet.BottomSheetDialogFragment;
+
+
+public class BottomSheet extends BottomSheetDialogFragment {
+
+ com.google.android.material.switchmaterial.SwitchMaterial aSwitch;
+ Spinner spinner;
+ String[] aa = {"ENG", "bn", "hi", "de", "fr", "es", "tl", "Eng"};
+
+ MainActivity activity;
+
+
+ public BottomSheet() {
+
+
+ }
+
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+ activity = (MainActivity) getActivity();
+
+ View view = inflater.inflate(R.layout.fragment_bottom_sheet, container, false);
+ aSwitch = view.findViewById(R.id.switch1);
+
+
+ if (activity.sharedPreferences.getBoolean("mode", false)) {
+ aSwitch.setChecked(true);
+ }
+ spinner = view.findViewById(R.id.spinner);
+ String p = activity.sharedPreferences.getString("lang", "ENG");
+
+ for (int i = 0; i < aa.length; i++) {
+ if (aa[i].equals(p)) {
+ Toast.makeText(activity, p, Toast.LENGTH_SHORT).show();
+ spinner.setSelection(i);
+ break;
+ }
+ }
+
+
+ Button hide = view.findViewById(R.id.hide);
+
+ // spinner.setSelection(2);
+
+ aSwitch.setOnCheckedChangeListener((buttonView, isChecked) -> okk(isChecked));
+
+ ApiCalling apiCalling = new ApiCalling(activity);
+
+ spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
+ @Override
+ public void onItemSelected(AdapterView> parent, View view, int position, long id) {
+ String lang;
+ if (position == 0) {
+ apiCalling.setLANGUAGE("ENG");
+ lang = "ENG";
+ } else if (position == 1) {
+ // apiCalling.LANGUAGE="bn";
+ apiCalling.setLANGUAGE("bn");
+ lang = "bn";
+ } else if (position == 2) {
+ apiCalling.setLANGUAGE("hi");
+ lang = "hi";
+
+ } else if (position == 3) {
+ apiCalling.setLANGUAGE("de");
+ lang = "de";
+
+
+ } else if (position == 4) {
+ apiCalling.setLANGUAGE("fr");
+ lang = "fr";
+
+ } else if (position == 5) {
+ apiCalling.setLANGUAGE("es");
+ lang = "es";
+
+
+ } else if (position == 6) {
+ apiCalling.setLANGUAGE("tl");
+ lang = "tl";
+
+ } else {
+ apiCalling.setLANGUAGE("ENG");
+ lang = "ENG";
+ }
+
+ activity.myedit.putString("lang", lang);
+ activity.myedit.commit();
+
+ }
+
+ @Override
+ public void onNothingSelected(AdapterView> parent) {
+
+ }
+ });
+
+ // Inflate the layout for this fragment
+ hide.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ if (!activity.bottomSheet.isHidden()) {
+ activity.bottomSheet.dismiss();
+ }
+
+
+ }
+ });
+ return view;
+ }
+
+
+ @SuppressLint("SetTextI18n")
+ public void okk(boolean ischecked) {
+
+ //final boolean isDarkModeOn = false;//sharedPreferences.getBoolean("isDarkModeOn", false);
+
+ if (ischecked) {
+ AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
+ aSwitch.setText("Disable Dark Mode");
+ activity.bottomSheet.dismiss();
+ activity.myedit.putBoolean("mode", true);
+
+ } else {
+ AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
+ aSwitch.setText("Enable Dark mode ");
+ aSwitch.setChecked(false);
+ activity.bottomSheet.dismiss();
+ activity.myedit.putBoolean("mode", false);
+ }
+
+ activity.myedit.commit();
+
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/status/truthanddare/MainActivity.java b/app/src/main/java/com/status/truthanddare/MainActivity.java
new file mode 100644
index 0000000..68dfac7
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/MainActivity.java
@@ -0,0 +1,281 @@
+package com.status.truthanddare;
+
+import android.annotation.SuppressLint;
+import android.content.ActivityNotFoundException;
+import android.content.ClipData;
+import android.content.ClipboardManager;
+import android.content.Context;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.net.Uri;
+import android.os.Bundle;
+import android.os.Handler;
+import android.view.View;
+import android.view.animation.AlphaAnimation;
+import android.view.animation.Animation;
+import android.widget.TextView;
+import android.widget.Toast;
+
+import androidx.annotation.NonNull;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.appcompat.app.AppCompatDelegate;
+import androidx.recyclerview.widget.RecyclerView;
+import androidx.viewpager2.widget.CompositePageTransformer;
+import androidx.viewpager2.widget.MarginPageTransformer;
+import androidx.viewpager2.widget.ViewPager2;
+
+import com.status.truthanddare.Adapter.SliderAdapter;
+import com.status.truthanddare.modelclass.ImageSlider;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class MainActivity extends AppCompatActivity {
+
+ com.google.android.material.floatingactionbutton.FloatingActionButton button;
+ BottomSheet bottomSheet;
+ SharedPreferences.Editor myedit;
+ SharedPreferences sharedPreferences;
+ ViewPager2 viewPager2;
+ private final Handler sliderHandler = new Handler();
+ com.google.android.material.button.MaterialButton whatsapp, shareToApp, copyText,follow;
+ TextView question;
+ androidx.cardview.widget.CardView b1, b2;
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+
+
+ viewPager2 = findViewById(R.id.viewPagerImageSlider);
+
+ List sliderItems = new ArrayList<>();
+ sliderItems.add(new ImageSlider(R.drawable.img2));
+ sliderItems.add(new ImageSlider(R.drawable.img3));
+ sliderItems.add(new ImageSlider(R.drawable.img1));
+ sliderItems.add(new ImageSlider(R.drawable.img4));
+
+
+
+ viewPager2.setAdapter(new SliderAdapter(sliderItems,viewPager2));
+
+ viewPager2.setClipToPadding(false);
+ viewPager2.setClipChildren(false);
+ viewPager2.setOffscreenPageLimit(3);
+ viewPager2.getChildAt(0).setOverScrollMode(RecyclerView.OVER_SCROLL_NEVER);
+ CompositePageTransformer compositePageTransformer = new CompositePageTransformer();
+ compositePageTransformer.addTransformer(new MarginPageTransformer(40));
+/*
+ NetworkConnectionCheck networkConnectionCheck=new NetworkConnectionCheck(this);
+
+ ConnectivityManager connectivityManager=(ConnectivityManager)getSystemService(ConnectivityManager.class);
+ connectivityManager.requestNetwork(networkConnectionCheck.networkRequest,networkConnectionCheck.networkCallback);
+*/
+ compositePageTransformer.addTransformer(new ViewPager2.PageTransformer() {
+ @Override
+ public void transformPage(@NonNull View page, float position) {
+ float r = 1 - Math.abs(position);
+ page.setScaleY(0.85f + r * 0.15f);
+ }
+ });
+
+ viewPager2.setPageTransformer(compositePageTransformer);
+ viewPager2.registerOnPageChangeCallback(new ViewPager2.OnPageChangeCallback() {
+ @Override
+ public void onPageSelected(int position) {
+ super.onPageSelected(position);
+ sliderHandler.removeCallbacks(sliderRunnable);
+ sliderHandler.postDelayed(sliderRunnable, 2000); // slide duration 2 seconds
+ }
+ });
+
+
+ sharedPreferences = getSharedPreferences("Dark", MODE_PRIVATE);
+ myedit = sharedPreferences.edit();
+ boolean mode = sharedPreferences.getBoolean("mode", false);
+ if (mode)
+ AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
+
+
+ b1 = findViewById(R.id.truth);
+ whatsapp = findViewById(R.id.whatsappshare);
+ shareToApp = findViewById(R.id.shareToApps);
+ shareToApp.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ shareToApps(question.getText().toString());
+ }
+ });
+
+ //follow button
+ follow=findViewById(R.id.follow);
+ follow.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+ instgramMethod();
+
+
+ }
+ });
+
+ // Copy Text button
+ copyText = findViewById(R.id.copytext);
+ copyText.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ copyText(question.getText().toString());
+ }
+ });
+
+
+ whatsapp.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ whatsappShare(question.getText().toString());
+ }
+ });
+
+
+ // bottomSheet.spinner.setSelection();
+
+
+ b2 = findViewById(R.id.dare);
+ button = findViewById(R.id.FButoon);
+
+ question = findViewById(R.id.QuestionShow);
+ animation(question);
+ ApiCalling apiCalling = new ApiCalling(getApplicationContext());
+ apiCalling.setLANGUAGE(sharedPreferences.getString("lang", "ENG"));
+ apiCalling.apiCallingp();
+ apiCalling.dareAns();
+
+ // Truth Button
+ b1.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+
+ // oTruth();
+
+ question.setText(apiCalling.answer());
+ apiCalling.apiCallingp();
+ // sw.setImageResource(R.drawable.pro);
+ }
+ });
+
+ //Dare Button
+
+ b2.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ Toast.makeText(getApplicationContext(), "Next Image",
+ Toast.LENGTH_LONG).show();
+ apiCalling.dareAns();
+ question.setText(apiCalling.answer());
+
+ // oDare();
+ // sw.setImageResource(R.drawable.pro1);
+ }
+ });
+
+ // Bottom Sheet
+ button.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ bottomSheet = new BottomSheet();
+ bottomSheet.show(getSupportFragmentManager(), bottomSheet.getTag());
+ }
+ });
+
+
+ }
+
+ private void instgramMethod() {
+ Uri uri = Uri.parse("http://instagram.com/Its_Aashi_pandit");
+ Intent likeIng = new Intent(Intent.ACTION_VIEW, uri);
+ likeIng.setPackage("com.instagram.android");
+ try {
+ startActivity(likeIng);
+ } catch (ActivityNotFoundException e) {
+ startActivity(new Intent(Intent.ACTION_VIEW,
+ Uri.parse("http://instagram.com/Its_Aashi_pandit")));
+ }
+ }
+
+ @SuppressLint("QueryPermissionsNeeded")
+ void whatsappShare(String text) {
+
+ // String toNumber = "+91 80532 75720"; // contains spaces.
+ // toNumber = toNumber.replace("+", "").replace(" ", "");
+
+ Intent sendIntent = new Intent("android.intent.action.MAIN");
+ sendIntent.putExtra("jid", "@s.whatsapp.net");
+ sendIntent.putExtra(Intent.EXTRA_TEXT, text);
+ sendIntent.setAction(Intent.ACTION_SEND);
+ sendIntent.setPackage("com.whatsapp");
+ sendIntent.setType("text/plain");
+ startActivity(sendIntent);
+
+ }
+
+ void shareToApps(String text) {
+
+ Intent sendIntent = new Intent(Intent.ACTION_SEND);
+ sendIntent.putExtra(Intent.EXTRA_TEXT, text);
+ sendIntent.setType("text/plain");
+
+// (Optional) Here we're setting the title of the content
+ sendIntent.putExtra(Intent.EXTRA_TITLE, "Truth Dare App");
+ // sendIntent.setType("text/plain");
+
+// (Optional) Here we're passing a content URI to an image to be displayed
+ // sendIntent.setData(contentUri);
+ sendIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
+
+// Show the Sharesheet
+ startActivity(Intent.createChooser(sendIntent, null));
+ }
+
+ void copyText(String text) {
+
+// Gets a handle to the clipboard service.
+ ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
+ // Creates a new text clip to put on the clipboard
+ ClipData clip = ClipData.newPlainText(" ", text);
+ Toast.makeText(this, "copied", Toast.LENGTH_SHORT).show();
+ // Set the clipboard's primary clip.
+ clipboard.setPrimaryClip(clip);
+ }
+ Runnable sliderRunnable = new Runnable() {
+ @Override
+ public void run() {
+ viewPager2.setCurrentItem(viewPager2.getCurrentItem() + 1);
+ }
+ };
+ @Override
+ protected void onPause() {
+ super.onPause();
+ sliderHandler.removeCallbacks(sliderRunnable);
+ }
+
+ @Override
+ protected void onResume() {
+ super.onResume();
+ sliderHandler.postDelayed(sliderRunnable, 2000);
+ }
+
+ void animation(TextView textView){
+ Animation anim = new AlphaAnimation(0.0f, 1.0f);
+ anim.setDuration(900); //You can manage the blinking time with this parameter
+ anim.setStartOffset(20);
+ anim.setRepeatMode(Animation.REVERSE);
+ anim.setRepeatCount(Animation.INFINITE);
+ textView.startAnimation(anim);
+ }
+
+
+
+
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/status/truthanddare/Network/NetworkConnectionCheck.java b/app/src/main/java/com/status/truthanddare/Network/NetworkConnectionCheck.java
new file mode 100644
index 0000000..7e06b8e
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/Network/NetworkConnectionCheck.java
@@ -0,0 +1,53 @@
+package com.status.truthanddare.Network;
+
+import android.net.ConnectivityManager;
+import android.net.Network;
+import android.net.NetworkCapabilities;
+import android.net.NetworkRequest;
+import android.widget.Toast;
+
+import androidx.annotation.NonNull;
+
+import com.status.truthanddare.MainActivity;
+
+public class NetworkConnectionCheck {
+
+ //Note:
+ //This Class Is not Implemented yet.
+ //I will Add this is next Version
+ // Thanks you
+ MainActivity mainActivity;
+ public NetworkRequest networkRequest;
+
+ public NetworkConnectionCheck(MainActivity mainActivity){
+
+ networkRequest=new NetworkRequest.Builder().addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
+ .addTransportType(NetworkCapabilities.TRANSPORT_WIFI).addTransportType(NetworkCapabilities.TRANSPORT_CELLULAR).build();
+ this.mainActivity=mainActivity;
+ }
+ public ConnectivityManager.NetworkCallback networkCallback=new ConnectivityManager.NetworkCallback(){
+ @Override
+ public void onAvailable(@NonNull Network network) {
+ super.onAvailable(network);
+ }
+
+ @Override
+ public void onLost(@NonNull Network network) {
+ super.onLost(network);
+ Toast.makeText(mainActivity, "Connection Lost", Toast.LENGTH_SHORT).show();
+ }
+
+ @Override
+ public void onCapabilitiesChanged(@NonNull Network network, @NonNull NetworkCapabilities networkCapabilities) {
+ super.onCapabilitiesChanged(network, networkCapabilities);
+ final boolean unmetered=networkCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED);
+
+ }
+
+
+ };
+
+
+
+
+}
diff --git a/app/src/main/java/com/status/truthanddare/modelclass/ImageSlider.java b/app/src/main/java/com/status/truthanddare/modelclass/ImageSlider.java
new file mode 100644
index 0000000..962fe0b
--- /dev/null
+++ b/app/src/main/java/com/status/truthanddare/modelclass/ImageSlider.java
@@ -0,0 +1,13 @@
+package com.status.truthanddare.modelclass;
+
+public class ImageSlider {
+
+ private final int image;
+ public ImageSlider(int image) {
+ this.image = image;
+ }
+ public int getImage() {
+ return image;
+ }
+ }
+
diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/copy_24.xml b/app/src/main/res/drawable/copy_24.xml
new file mode 100644
index 0000000..465eebf
--- /dev/null
+++ b/app/src/main/res/drawable/copy_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/drawable/dark_mode_24.xml b/app/src/main/res/drawable/dark_mode_24.xml
new file mode 100644
index 0000000..9f2343d
--- /dev/null
+++ b/app/src/main/res/drawable/dark_mode_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..ca3826a
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/iinst.png b/app/src/main/res/drawable/iinst.png
new file mode 100644
index 0000000..771ae98
Binary files /dev/null and b/app/src/main/res/drawable/iinst.png differ
diff --git a/app/src/main/res/drawable/img1.png b/app/src/main/res/drawable/img1.png
new file mode 100644
index 0000000..7a4f6b7
Binary files /dev/null and b/app/src/main/res/drawable/img1.png differ
diff --git a/app/src/main/res/drawable/img2.jpg b/app/src/main/res/drawable/img2.jpg
new file mode 100644
index 0000000..db7a255
Binary files /dev/null and b/app/src/main/res/drawable/img2.jpg differ
diff --git a/app/src/main/res/drawable/img3.jpg b/app/src/main/res/drawable/img3.jpg
new file mode 100644
index 0000000..7e146bd
Binary files /dev/null and b/app/src/main/res/drawable/img3.jpg differ
diff --git a/app/src/main/res/drawable/img4.jpg b/app/src/main/res/drawable/img4.jpg
new file mode 100644
index 0000000..1a695f6
Binary files /dev/null and b/app/src/main/res/drawable/img4.jpg differ
diff --git a/app/src/main/res/drawable/language_24.xml b/app/src/main/res/drawable/language_24.xml
new file mode 100644
index 0000000..57ebda5
--- /dev/null
+++ b/app/src/main/res/drawable/language_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/drawable/share_24.xml b/app/src/main/res/drawable/share_24.xml
new file mode 100644
index 0000000..bb7d82b
--- /dev/null
+++ b/app/src/main/res/drawable/share_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/drawable/up_24.xml b/app/src/main/res/drawable/up_24.xml
new file mode 100644
index 0000000..240f06c
--- /dev/null
+++ b/app/src/main/res/drawable/up_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/drawable/whatshot_24.xml b/app/src/main/res/drawable/whatshot_24.xml
new file mode 100644
index 0000000..828ab8a
--- /dev/null
+++ b/app/src/main/res/drawable/whatshot_24.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..1171bd0
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,192 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_bottom_sheet.xml b/app/src/main/res/layout/fragment_bottom_sheet.xml
new file mode 100644
index 0000000..ec83188
--- /dev/null
+++ b/app/src/main/res/layout/fragment_bottom_sheet.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/sliderimage.xml b/app/src/main/res/layout/sliderimage.xml
new file mode 100644
index 0000000..5a0027b
--- /dev/null
+++ b/app/src/main/res/layout/sliderimage.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..c4a603d
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..c4a603d
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..12b0491
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..6d5101b
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..af0f31c
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..e9a6797
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..a31ed80
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..e806d5b
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..236fa46
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..3949ee7
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..e3670a9
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..f3076d2
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..2764cf9
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..c23ee88
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..54e8453
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..f7e2162
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..b63cd39
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/values-night/strings.xml b/app/src/main/res/values-night/strings.xml
new file mode 100644
index 0000000..a658752
--- /dev/null
+++ b/app/src/main/res/values-night/strings.xml
@@ -0,0 +1,24 @@
+
+
+ Truth and Dare
+ Demo question
+ Copy
+ Share
+ Whatsapp
+ T
+ D
+ Dark Mode
+ Language
+ Hide
+ Follow Us
+ Instagram
+
+ - English
+ - বাংলা (Bengali)
+ - हिंदी (Hindi)
+ - Deutsch (German)
+ - Français (French)
+ - Español (Spanish)
+ - Tagalog (Filipino)
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..314d7fc
--- /dev/null
+++ b/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values-v23/themes.xml b/app/src/main/res/values-v23/themes.xml
new file mode 100644
index 0000000..8c5c29b
--- /dev/null
+++ b/app/src/main/res/values-v23/themes.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..bac5da7
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,14 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #F9F4F4
+ #8241F8
+ #99000000
+ #1f1f29
+ #E5E1E1
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..3427b80
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,27 @@
+
+ Truth and Dare
+ What is your Top Priority?
+ Copy
+ Share
+ Whatsapp
+ 00.05
+ T
+ D
+
+ Hello blank fragment
+ Dark Mode
+ Language
+ Hide
+ Bottom Sheet
+ Follow Us
+ Instagram
+
+ - English
+ - বাংলা (Bengali)
+ - हिंदी (Hindi)
+ - Deutsch (German)
+ - Français (French)
+ - Español (Spanish)
+ - Tagalog (Filipino)
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..4ac2cb3
--- /dev/null
+++ b/app/src/main/res/values/themes.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..fa0f996
--- /dev/null
+++ b/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/test/java/com/status/truthanddare/ExampleUnitTest.java b/app/src/test/java/com/status/truthanddare/ExampleUnitTest.java
new file mode 100644
index 0000000..6bd722a
--- /dev/null
+++ b/app/src/test/java/com/status/truthanddare/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package com.status.truthanddare;
+
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see Testing documentation
+ */
+public class ExampleUnitTest {
+ @Test
+ public void addition_isCorrect() {
+ assertEquals(4, 2 + 2);
+ }
+}
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..03607ba
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,5 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ id 'com.android.application' version '7.4.0' apply false
+ id 'com.android.library' version '7.4.0' apply false
+}
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..92b9117
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,22 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
+android.enableJetifier=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..3ab5e56
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sun Jan 29 10:44:36 IST 2023
+distributionBase=GRADLE_USER_HOME
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
+distributionPath=wrapper/dists
+zipStorePath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
diff --git a/gradlew b/gradlew
new file mode 100644
index 0000000..4f906e0
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..107acd3
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..eded71c
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,18 @@
+pluginManagement {
+ repositories {
+ gradlePluginPortal()
+ google()
+ jcenter()
+ mavenCentral()
+ }
+}
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ jcenter()
+ }
+}
+rootProject.name = "Truth and Dare"
+include ':app'