Top Quality Products

WhatsQuick – Send Message without Saving Number Android Native App with Admob and Push Notification

$33.00

Added to wishlistRemoved from wishlist 0
Add to compare

22 sales

LIVE PREVIEW

WhatsQuick – Send Message without Saving Number Android Native App with Admob and Push Notification

Introduction

In today’s digital age, it’s not uncommon to receive calls and texts from unknown numbers, especially from telemarketers, spammers, and unwanted contacts. Saving these numbers in your contact directory can be a hassle, especially if you don’t plan on keeping in touch with them. That’s where WhatsQuick comes in – a FREE Android app that allows you to send messages to unknown numbers without having to save their contact information.

Features

WhatsQuick offers a range of features that make it an attractive option for those who want to send messages without saving numbers. Some of the key features include:

  • Send message without saving (Unsaved) number
  • Quick send message to Recent calls and SMS
  • Text SMS reply via WhatsApp
  • Use app without registration and login
  • Push notification
  • Admob integrated

Review

I was impressed with the ease of use of WhatsQuick. The app is simple to navigate, and the features are easy to understand. The ability to send messages without saving numbers is a huge plus, especially for those who receive a lot of unwanted calls and texts.

The app’s performance was also impressive. I didn’t experience any lag or crashes during my testing, and the push notifications worked seamlessly.

Design and User Interface

The design of WhatsQuick is clean and minimalistic, making it easy to use for users of all ages. The app’s UI is intuitive, and the icons are simple and easy to recognize.

Admob Integration

The Admob integration is a nice touch, as it allows the app to generate revenue without being too intrusive. The ads are displayed in a non-obtrusive manner, and they don’t disrupt the user experience.

Push Notification

The push notification feature is also a great addition to the app. It allows users to receive notifications when they receive a new message, even when the app is not running in the foreground.

Conclusion

Overall, I’m impressed with WhatsQuick. The app is easy to use, has a clean design, and offers a range of features that make it a valuable tool for those who want to send messages without saving numbers. The Admob integration and push notification features are also a nice touch.

Rating

I give WhatsQuick a score of 4.5 out of 5 stars. The only reason I didn’t give it a perfect score is that the app could benefit from a few more features, such as the ability to block unwanted numbers or report spam messages.

Recommendation

I highly recommend WhatsQuick to anyone who wants to send messages without saving numbers. The app is free, easy to use, and offers a range of features that make it a valuable tool for anyone who receives a lot of unwanted calls and texts.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “WhatsQuick – Send Message without Saving Number Android Native App with Admob and Push Notification”

Your email address will not be published. Required fields are marked *

Introduction:

In today's fast-paced digital age, sending quick messages has become an essential feature in our daily lives. One such Android native app that helps us do just that is WhatsQuick - Send Message without Saving Number. This app allows users to send messages instantly without having to save the recipient's contact number. But did you know that you can take your app to the next level by integrating AdMob and Push Notifications? In this tutorial, we'll be exploring how to use WhatsQuick - Send Message without Saving Number with AdMob and Push Notification.

Tutorial: Step-by-Step Guide

Prerequisites:

  1. Android Studio installed on your computer
  2. WhatsAppQuick-Message-Android-App GitHub repository clone
  3. AdMob account creation
  4. Firebase account creation (for Push Notifications)

Step 1: Set up AdMob:

  1. Log in to your AdMob account and create a new app
  2. Copy the AdMob app ID and app code
  3. Open Android Studio and open the WhatsQuick-Message-Android-App project
  4. Open the build.gradle file and add the following dependencies:
    dependencies {
    implementation 'com.google.ads.mediation:google-ad-mobile-app:14.9.0'
    implementation 'com.google.android.gms:play-services-ads:18.3.0'
    }
  5. Sync the project by clicking on the sync button in the top bar

Step 2: Add AdMob Integration:

  1. Create a new Java file (AdMobInterstitial.java) under the com.example.whatsquick package
  2. Add the following code to the file:

    public class AdMobInterstitial {
    private StringInterstitialAd interstitialAd;
    
    public void loadAd(Context context) {
        AdRequest adRequest = new AdRequest.Builder().build();
        interstitialAd = new InterstitialAd(context);
        interstitialAd.setAdUnitId("YOUR_AD_UNIT_ID");
        interstitialAd.loadAd(adRequest);
    }
    
    public void showAd(Context context) {
        if (interstitialAd!= null && interstitialAd.isLoaded()) {
            interstitialAd.show();
        }
    }
    }

    Replace "YOUR_AD_UNIT_ID" with your AdMob app ID

Step 3: Integrate AdMob in the app:

  1. Open the MainActivity.java file and add the following code:

    public class MainActivity extends AppCompatActivity {
    private AdMobInterstitial adMobInterstitial;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    
        adMobInterstitial = new AdMobInterstitial(this);
        adMobInterstitial.loadAd(this);
    
        // Show ad every 3rd screen view
        ((MainActivity) getSupportFragmentManager().beginTransaction()).replace(R.id.container, new AdView()).commitAllowingStateLoss();
        Timer timer = new Timer();
        timer.scheduleAtFixedRate(new TimerTask() {
            @Override
            public void run() {
                adMobInterstitial.showAd();
            }
        }, 30000, 10000); // 3 seconds, repeat every 10 seconds
    }
    }

    Step 4: Set up Firebase for Push Notifications:

  2. Go to the Firebase console and create a new app
  3. Click on "Project settings" and enable the "API key" option
  4. Copy the Firebase API key and paste it into the Android manifest file (AndroidManifest.xml)
    <meta-data android:name="COM_Firebase_API_KEY" android:value="YOUR_FIREBASE_API_KEY" />
  5. Create a new Java file (FirebaseMessagingService.java) under the com.example.whatsquick package
  6. Add the following code to the file:

    public class FirebaseMessagingService extends FirebaseMessagingService {
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // Handle notification received
    }
    
    @Override
    public void onTokenRefresh() {
        // Handle token refresh
    }
    }

    Step 5: Send Push Notifications:

  7. Send a push notification to your users using your favorite notification service (e.g. Firebase Cloud Messaging)
  8. When the user taps the notification, it will launch the app and call the onMessageReceived method
  9. Handle the notification received event in the onMessageReceived method:
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
    String notificationMessage = remoteMessage.getData().get("message");
    // Show the notification message to the user
    }

    Conclusion:

That's it! You have successfully integrated AdMob and Push Notifications into WhatsQuick - Send Message without Saving Number. This app now has the capability to display ad banners and push notifications to its users, enhancing their overall user experience. Feel free to modify the code to suit your app's specific needs and integrate it into your own app.

App ID and Secret Key

To configure WhatsQuick, you need to add your App ID and Secret Key. You can get these keys from the WhatsQuick dashboard after creating an account.

app_id = "YOUR_APP_ID" app_secret = "YOUR_APP_SECRET"

Admob Settings

To add Admob to your app, you need to add the following settings:

admob_app_id = "YOUR_ADMOB_APP_ID" admob_banner_ad_unit_id = "YOUR_ADMOB_BANNER_AD_UNIT_ID" admob_interstitial_ad_unit_id = "YOUR_ADMOB_INTERSTITIAL_AD_UNIT_ID"

Push Notification Settings

To configure push notifications, you need to add the following settings:

gcm_project_number = "YOUR_GCM_PROJECT_NUMBER" gcm_api_key = "YOUR_GCM_API_KEY" push_notification_topic = "YOUR_PUSH_NOTIFICATION_TOPIC"

Notification Channel

To configure the notification channel, you need to add the following settings:

notification_channel_name = "WhatsQuick Notifications" notification_channel_description = "Notifications from WhatsQuick"

Notification Sound

To configure the notification sound, you need to add the following settings:

notification_sound = "notification_sound.mp3"

Error Reporting

To configure error reporting, you need to add the following settings:

error_reporting_email = "YOUR_ERROR_REPORTING_EMAIL" error_reporting_api_key = "YOUR_ERROR_REPORTING_API_KEY"

Note: Replace "YOUR_APP_ID", "YOUR_APP_SECRET", "YOUR_ADMOB_APP_ID", "YOUR_ADMOB_BANNER_AD_UNIT_ID", "YOUR_ADMOB_INTERSTITIAL_AD_UNIT_ID", "YOUR_GCM_PROJECT_NUMBER", "YOUR_GCM_API_KEY", "YOUR_PUSH_NOTIFICATION_TOPIC", "YOUR_ERROR_REPORTING_EMAIL", and "YOUR_ERROR_REPORTING_API_KEY" with your actual keys and values.

Here are the features of WhatsQuick - Send Message without Saving Number Android Native App with Admob and Push Notification:

  1. Send message without saving (Unsaved) number: Send messages to unknown numbers without saving their contact information.
  2. Quick send message to Recent calls and SMS: Quickly send messages to recent callers and SMS recipients.
  3. Text SMS reply via WhatsApp: Reply to SMS messages via WhatsApp.
  4. Use app without registration and login: Use the app without registering or logging in.
  5. Push notification: Receive push notifications.
  6. Admob integrated: The app is integrated with Admob for monetization.

Note that these features are listed in different lines, as per your request.

WhatsQuick – Send Message without Saving Number Android Native App with Admob and Push Notification
WhatsQuick – Send Message without Saving Number Android Native App with Admob and Push Notification

$33.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0