• The default language of any content posted is English.
Andro News - Android News App With Reward System by AndroMOB

Andro News - Android News App With Reward System by AndroMOB 1.0

raz0r

owner
Staff member
Administrator
Moderator
Messages
17,456
Reactions
71,093
raz0r submitted a new resource:

Andro News - Android News App With Reward System - Download Andro News Android News App With Reward System 42733609

View attachment 14218

Andro News is an mobile news app with reward system which run under Android platform that used for your own news application, Developed with Native Java Language it makes the app run faster and smoothly, Designed with Google Materials Design it makes the app beautiful in design and users experience.

Integrated with Admin Panel to manage news, category, notification and many more things anytime and anywhere you want, Admin Panel side developed using...

Read more about this resource...
 
28 August 2023

- Updated Codes To Latest Android Studio Flamingo | 2022.2.1 Patch 2
- Updated Sdk Version to 34
- Updated All Libraries to Latest Version
- Admin Panel Supports Php V8.2
- Updated Youtube Player to iframe Api (youtube api key is no longer required)
- About Us details can be changed from admin panel settings
- Other Bugs Fixes & Performance Improved
 
Admin or any one can make nulled this file. thanks in advance.
@raz0r
Post automatically merged:

Code:
function validateStep3() {
    var data = {
        'error': true,
        'message': "Please fill the all required field."
    };
    $('#step-3 input').each(function () {
        if (!$(this).val() && $(this).val().length <= 0) {
            data = {
                'error': true,
                'message': "Please fill the all required field."
            };
        }
    });
    var purchase_code = $("#step-3 input#purchase_code").val();
    var package_name = $("#step-3 input#package_name").val();

    if (purchase_code != "" && package_name != "") {
        data = check_purchase_code(purchase_code, package_name);
    } else {
        data = {
            'error': true,
            'message': "Please fill the all required field."
        };
    }
    return data;
}

function check_purchase_code(purchase_code, package_name) {
    var pathname = 'https://verify.andromob.co.in?type=envato&pcode='+purchase_code+'&package_name='+package_name;

    $.ajaxSetup({async: false,
    dataType: 'json',
    contentType: "application/x-www-form-urlencoded; charset=UTF-8"});
    var returnUserData = null;
    $.post(pathname, function (data) {
        returnUserData = data;
    });
    $.ajaxSetup({async: true});
    return returnUserData;
}

function validateStep4() {
    var data = {
        'error': false,
        'message': ""
    };
 

Attachments

  • smartWizard-validation.zip
    1.4 KB · Views: 2
Top