We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MainActivity
package com.example.nolla_money_hover; import androidx.appcompat.app.AppCompatActivity; import android.annotation.SuppressLint; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; import com.hover.sdk.api.Hover; import com.hover.sdk.api.HoverParameters; public class MainActivity extends AppCompatActivity { TextView run; @SuppressLint("MissingPermission") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Hover.initialize(MainActivity.this); run = findViewById(R.id.run); run.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { ussd(); } }); } private void ussd() { Intent intent = new HoverParameters.Builder(MainActivity.this) .request("7ee3c804") .extra("receiverNumber","xxxxxxxxxx") .extra("amount","100") .buildIntent(); startActivityForResult(intent,0); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried to follow each and every step as directed in HOVER DOCUMENTATION but I ended getting this warning here
if is there a way to solve plz help. @davkutalek @UseHover
MainActivity
The text was updated successfully, but these errors were encountered: