Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»ANDROID STUDIO»Generate signed apk in android studio | sign your app
    ANDROID STUDIO

    Generate signed apk in android studio | sign your app

    DeepikaBy DeepikaSeptember 25, 2019Updated:January 19, 2022No Comments4 Mins Read

    Generate signed apk file in android studio of 2019. About Android Studio , Basic of Android studio and need of signed .apk file for Play store console ...

    This App Belong to Math Solver , In this app we can handle the problem of math like finding value of sin, cos, tan, square root, cube root , and factorial values .you can visit my app on Play Store App link is given this link create signed apk for play store.

    Table of Contents

    Toggle
    • HOW TO GENERATE SIGNED APK VISIT MY YOU-TUBE VIDEO
    • MainActivity.java
    • activity_main.xml File
    • How to Publish Android App on Google Play Sore . YouTube Video
    • Conclusion
      • Cheers!
    • READ MORE…

    HOW TO GENERATE SIGNED APK VISIT MY YOU-TUBE VIDEO

    generate signed apk

    In this Section we will be saying that google play store is very good platform to store our App on Play Store …We can easily handle our apps and Update our App Time to Time ..Google play store are not take much more time in Update .For More You Can Download and Install My All App on Google Play Store….

    Visit my Google Play Store Apps Click on this Link

    This My Creative App Click on DeepCrazyWorld App>>>>>>>>>>>

    To Solve Your Math Calculation Math Solve App >>>>>

    Spinner Bottle Game App>>>>>>>>>>>>>>>>>>>>>

    This News Nation App News7on>>>>>>>>>>>>>>

    Shopping App ZampKart >>>>>>>>>>>>>>>>>>>

    Math Equation Solving App>>>>>>>>>>>>>>>>>>>

    Event Basis Picture LovingCaring143 App>>>>>>>>>

    Here This Blogger Site App to Explore Your Knowledge Download all this Apps By Google Play Store My Blogger Site App Download And Install Click on Link CrazyCoder>>>>>>>>>>

    How To Generate Signed apk File By My YouTube Video Click on >>>>>

    How To Publish Android App On Goggle Play Store click on This Link for Publish android app Video>>>>>

    <img decoding=
    Play Store App Click Me

    MainActivity.java

    package com.deep.mathsolve;
    
    import androidx.appcompat.app.AppCompatActivity;
    import android.os.Bundle;
    import android.text.Html;
    import android.view.View;
    import android.widget.Button;
    import android.widget.EditText;
    import android.widget.TextView;
    
    public class MainActivity extends AppCompatActivity {
        EditText et_input;
        TextView tv_answer;
        Button b_sin, b_cos, b_tan, b_factorial, b_root, b_pow2, b_pow3;
    
        double input, answer;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            et_input = (EditText) findViewById(R.id.et_input);
            tv_answer = (TextView) findViewById(R.id.tv_answer);
            b_sin = (Button) findViewById(R.id.b_sin);
            b_cos = (Button) findViewById(R.id.b_cos);
            b_tan = (Button) findViewById(R.id.b_tan);
            b_factorial = (Button) findViewById(R.id.b_factorial);
            b_root = (Button) findViewById(R.id.b_root);
            b_pow2 = (Button) findViewById(R.id.b_pow2);
            b_pow3 = (Button) findViewById(R.id.b_pow3);
    
            b_pow2.setText(Html.fromHtml("x<sup>2</sup>"));
            b_pow3.setText(Html.fromHtml("x<sup>3</sup>"));
    
            b_sin.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.sin(input);
                    tv_answer.setText("sin:" +answer);
                }
            });
    
            b_cos.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.cos(input);
                    tv_answer.setText("cos:" +answer);
                }
            });
    
            b_tan.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.tan(input);
                    tv_answer.setText("tan:" +answer);
                }
            });
    
            b_root.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.sqrt(input);
                    tv_answer.setText("root:" +answer);
                }
            });
    
            b_pow2.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.pow(input, 2);
                    tv_answer.setText("sqare:" +answer);
                }
            });
            b_pow3.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = Math.pow(input, 3);
                    tv_answer.setText("cubic:" +answer);
                }
            });
            b_factorial.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    input = Double.parseDouble(et_input.getText().toString());
                    answer = input;
                    for (int i = (int)input - 1; i>1; i++)
                    {
                        answer = answer + 1;
                    }
                    tv_answer.setText("factorial:" +answer);
                }
            });
    
        }
    }
    

    activity_main.xml File

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#F7F1E9A3"
        android:padding="10dp"
        android:paddingLeft="0dp"
        android:paddingTop="0dp"
        android:paddingRight="0dp"
        android:paddingBottom="0dp"
        tools:context=".MainActivity">
    
        <EditText
            android:id="@+id/et_input"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_marginTop="11dp"
            android:ems="10"
            android:inputType="numberDecimal|numberSigned"
            android:textColor="#009688" />
    
        <TextView
            android:id="@+id/tv_answer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="26dp"
            android:gravity="center"
            android:text=""
            android:textColor="#3F51B5"
            android:textSize="24dp" />
    
        <include
            layout="@layout/buttons"
            android:layout_width="401dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="52dp" />
    
    
    </RelativeLayout>
    activity_main.xml

    buttons.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:background="#F0E8A9"
        android:orientation="vertical">
    
        <Button
            android:id="@+id/b_sin"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="130dp"
            android:background="#8AE98E"
            android:text="sin"
            android:textAllCaps="false"
            android:textColor="#161515"
            android:textSize="14sp"
            android:textStyle="bold" />
    
        <Button
            android:id="@+id/b_cos"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#EC87FD"
            android:text="cos"
            android:textAllCaps="false" />
    
        <Button
            android:id="@+id/b_tan"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#EBBB75"
            android:text="tan"
            android:textAllCaps="false" />
    
        <Button
            android:id="@+id/b_root"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#99CBF3"
            android:text="@string/root"
            android:textAllCaps="false" />
    
    
        <Button
            android:id="@+id/b_pow2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#EABBF1"
            android:text="x2"
            android:textAllCaps="false" />
    
        <Button
            android:id="@+id/b_pow3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#8BC34A"
            android:text="x3"
            android:textAllCaps="false" />
    
        <Button
            android:id="@+id/b_factorial"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#2196F3"
            android:text="n!"
            android:textAllCaps="false" />
    
    </LinearLayout>
    <img loading=
    Publish on Play Store

    strings.xml

    <resources>
        <string name="app_name">Math Solve</string>
        <string name="root">\u221a</string>
    </resources>
    
    

    How to Publish Android App on Google Play Sore . YouTube Video

    Visit Us YouTube

    How to Publish app on play store

    Conclusion

    We have successfully generate signed apk Android application using Android Studio.


    Cheers!

    READ MORE…

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleWhat is Adsense and How Does Google Adsense Work?
    Next Article How to Create Story App in Android Studio Source code download

    Related Posts

    How to Make Car Racing Game App with Android Studio

    ANDROID 2 Mins Read

    OOP’s Concept Code – Basic operations and Relational Operators

    ANDROID STUDIO 3 Mins Read

    Java Program , Loop , Basic operations, Relational Operators

    ANDROID STUDIO 3 Mins Read

    Top 20+ Best Android app Project with Android Studio 2023

    Android Projects 4 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.