Monday, January 12, 2026

V-Belt Order app Privacy Policy

Privacy Policy Privacy Policy

This privacy policy applies to the V-Belt Order app (hereby referred to as "Application") for mobile devices that was created by Jay Ashokkumar Donga (hereby referred to as "Service Provider") as an Open Source service. This service is intended for use "AS IS".


What information does the Application obtain and how is it used?

The Application does not obtain any information when you download and use it. Registration is not required to use the Application.


Does the Application collect precise real time location information of the device?

This Application does not collect precise information about the location of your mobile device.


Do third parties see and/or have access to information obtained by the Application?

Since the Application does not collect any information, no data is shared with third parties.


What are my opt-out rights?

You can stop all collection of information by the Application easily by uninstalling it. You may use the standard uninstall processes as may be available as part of your mobile device or via the mobile application marketplace or network.


Children

The Application is not used to knowingly solicit data from or market to children under the age of 13.


The Service Provider does not knowingly collect personally identifiable information from children. The Service Provider encourages all children to never submit any personally identifiable information through the Application and/or Services. The Service Provider encourage parents and legal guardians to monitor their children's Internet usage and to help enforce this Policy by instructing their children never to provide personally identifiable information through the Application and/or Services without their permission. If you have reason to believe that a child has provided personally identifiable information to the Service Provider through the Application and/or Services, please contact the Service Provider (korygaa123@gmail.com) so that they will be able to take the necessary actions. You must also be at least 16 years of age to consent to the processing of your personally identifiable information in your country (in some countries we may allow your parent or guardian to do so on your behalf).


Security

The Service Provider is concerned about safeguarding the confidentiality of your information. However, since the Application does not collect any information, there is no risk of your data being accessed by unauthorized individuals.


Changes

This Privacy Policy may be updated from time to time for any reason. The Service Provider will notify you of any changes to their Privacy Policy by updating this page with the new Privacy Policy. You are advised to consult this Privacy Policy regularly for any changes, as continued use is deemed approval of all changes.


This privacy policy is effective as of 2026-01-12


Your Consent

By using the Application, you are consenting to the processing of your information as set forth in this Privacy Policy now and as amended by the Service Provider.


Contact Us

If you have any questions regarding privacy while using the Application, or have questions about the practices, please contact the Service Provider via email at korygaa123@gmail.com.


This privacy policy page was generated by App Privacy Policy Generator

Wednesday, June 5, 2013

Sample Google Maps API Key

AIzaSyCB_YCL-aX-mF1Of335ZQsUeYoyRS2e1jk

Get Current Location

public class MainActivity extends Activity {
    // Min time to update the position
        static final long MIN_TIME = 100; // 1 minute;
        // Min distance to update the position
        static final float MIN_DISTANCE = 10;
        LocationListener locationListener;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        LocationManager locationManager;
        String svcName = Context.LOCATION_SERVICE;
        locationManager = (LocationManager) getSystemService(svcName);

        // GPS criteria
        Criteria criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        criteria.setPowerRequirement(Criteria.POWER_MEDIUM);
        criteria.setAltitudeRequired(false);
        criteria.setBearingRequired(false);
        criteria.setSpeedRequired(false);
        criteria.setCostAllowed(true);
        String provider = locationManager.getBestProvider(criteria, true);

        Location l = locationManager.getLastKnownLocation(provider);
        updateWithNewLocation(l);
        
         locationListener = new LocationListener() {

            public void onLocationChanged(Location location) {
                updateWithNewLocation(location);
            }

            public void onProviderDisabled(String provider) {
                updateWithNewLocation(null);
            }

            public void onProviderEnabled(String provider) {
            }

            public void onStatusChanged(String provider, int status, Bundle extras) {
            }
            

        };
        locationManager.requestLocationUpdates(provider, MIN_TIME,
                MIN_DISTANCE, locationListener);

    }

    private void updateWithNewLocation(Location location) {

        double lat = 0;
        double lng = 0;

        if(location!=null)

        {    Log.e("Location ","data "+location.getLatitude()+""+location.getLongitude());
            // Update my location marker
            

            // Update the map location.

            Double geoLat = location.getLatitude() * 1E6;
            Double geoLng = location.getLongitude() * 1E6;

            System.out.println("Lat : " + geoLat + "Log : " + geoLng);
            Toast.makeText(MainActivity.this, "LAt -> " + geoLat + "Log => " + geoLng, Toast.LENGTH_SHORT).show();
        
        }
        else
        {
            Toast.makeText(MainActivity.this, "location did not obtain", Toast.LENGTH_SHORT).show();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

Thursday, September 29, 2011

24 Things to Alwayz Remember

1. Your presence is a present to the world.


2. You're unique and one of a kind.


3. Your life can be what you want it to be.

*****


4. Take the days just one at a time.


5. Count your blessings, not your troubles.


6. You'll make it through whatever comes along.


*****


7. Within you are so many answers.


8. Understand, have courage, be strong.


9. Don't put limits on yourself.


*****


10. So many dreams are waiting to be realized.


11. Decisions are too important to leave to chance.


12. Reach for your peak, your goal, and your prize.


*****


13. Nothing wastes more energy than worrying.


14. The longer one carries a problem, the heavier it gets.


15. Don't take things too seriously.


*****


16. Live a life of serenity, not a life of regrets.


17. Remember that a little love goes a long way.


18. Remember that a lot . . . goes forever.


*****


19. Remember that friendship is a wise investment.


20. Life's treasures are people . . . together.


21. Realize that it's never too late.


*****


22. Do ordinary things in an extraordinary way.


23. Have health and hope and happiness.


24. Take the time to wish upon a star.
Tricks and Tips