Quantcast
Channel: Active questions tagged react-native+android - Stack Overflow
Viewing all 29709 articles
Browse latest View live

Android React Native App HostNameVerifier Error from Google Play Store

$
0
0

Please help, I have the below implementation in MainApplication.java file. I am checking fixed hostnames and then returning true or false accordingly.

Error Insecure hostname verifier

Security Your app is using an unsafe implementation of hostnameverifier. Please see this Google Help Centre article for details,including the deadline for fixing the vulnerability.

Ld/a/a/a/a/c/e$1; Ld/a/a/a/a/c/f$1; sv:deadline:12/10/2020

 @Override  public void onCreate() {    super.onCreate();    hostnameVerifier();    MobileCore.setApplication(this);    SoLoader.init(this, /* native exopackage */ false);    ReactNativeFirebaseApp.setApplicationContext(this);  }private void hostnameVerifier(){    HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {      @Override      public boolean verify(String arg0, SSLSession arg1) {        String hostList[] = {"in.appcenter.ms", "graph.facebook.com","assets.adobedtm.com", "codepushupdates.azureedge.net", "app-measurement.com","forter.com", "dmn1", "dmn2", "dmn3", "quantummetric.com", "urbanairship.com", "demdex.net", "search.unbxd.io","monetate.net", "bazaarvoice.com", "google.com", "stylitics.com", "getcandid.com","braintreegateway.com"          };          for (String host : hostList) {            if (host.contains(arg0) || arg0.endsWith(host)) {              return true;            }          }        return false;      }    });  }

What should I change, please help.


How to build debug apk in react native

$
0
0

enter image description hereI want to build unsigned apk or debug apk. My application is successfully running on localhost. I have tried different methods. But it shows the error. I have got the answer from Here . when applying the command

 react-native bundle --dev false --platform android --entry-file index.android.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug

It showing the error is

Cannot find entry file index.android.js in any of the roots: ["D:\\workspace\\reactjs\\native\\myapp5"]

Then i have change index.android.js to App.js

Then it will showing the error is

ENOENT: no such file or directory, open 'D:\workspace\reactjs\native\myapp5\android\app\build\intermediates\assets\debug\index.android.bundle'

How to solve this problem? Please help me.

My react native versions are react-native-cli: 2.0.1 , react-native: 0.52.0 . Screenshot of my root folder i have posted.

when i run gradlew assembleDebug in android folder it showing the error.

enter image description here

How to make a splash screen with react native

$
0
0

I want to make a splash screen with react native, I try create this screen across this guide but isn't work the splash screen it does not show me anything

Do you know another way to create this view, can you help me please.

React native : apps crashed after try to uninstall react-native-firebase and gcm

$
0
0

i use reactnative to build my apps..and want to make notification for appsReact native : 0.52.0

then i want to try google cloud messanging. but i got some error and apps crashed. so, i try to redo all. i disable using //, react-native-firebase, i also disable classpath com.google.gms.google-servicesbecause before that, my apps actually dont use that service.

after i comment all, i try to build again , and i got error, i also already try to gradlew clean, but still same error :

2021-03-20 11:03:27.005 14894-14894/com.albums E/AndroidRuntime: FATAL EXCEPTION: mainProcess: com.albums, PID: 14894java.lang.RuntimeException: Unable to instantiate service com.evernote.android.job.gcm.PlatformGcmService: java.lang.ClassNotFoundException: Didn't find class "com.evernote.android.job.gcm.PlatformGcmService" on path: DexPathList[[zip file "/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk"],nativeLibraryDirectories=[/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/lib/x86, /system/fake-libs, /data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk!/lib/x86, /system/lib, /vendor/lib]]    at android.app.ActivityThread.handleCreateService(ActivityThread.java:3324)    at android.app.ActivityThread.-wrap4(Unknown Source:0)    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1677)    at android.os.Handler.dispatchMessage(Handler.java:106)    at android.os.Looper.loop(Looper.java:164)    at android.app.ActivityThread.main(ActivityThread.java:6494)    at java.lang.reflect.Method.invoke(Native Method)    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) Caused by: java.lang.ClassNotFoundException: Didn't find class "com.evernote.android.job.gcm.PlatformGcmService" on path: DexPathList[[zip file "/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk"],nativeLibraryDirectories=[/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/lib/x86, /system/fake-libs, /data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk!/lib/x86, /system/lib, /vendor/lib]]    at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:125)    at java.lang.ClassLoader.loadClass(ClassLoader.java:379)    at java.lang.ClassLoader.loadClass(ClassLoader.java:312)    at android.app.ActivityThread.handleCreateService(ActivityThread.java:3321)    at android.app.ActivityThread.-wrap4(Unknown Source:0)     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1677)     at android.os.Handler.dispatchMessage(Handler.java:106)     at android.os.Looper.loop(Looper.java:164)     at android.app.ActivityThread.main(ActivityThread.java:6494)     at java.lang.reflect.Method.invoke(Native Method)     at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)     Suppressed: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/gcm/GcmTaskService;    at java.lang.VMClassLoader.findLoadedClass(Native Method)    at java.lang.ClassLoader.findLoadedClass(ClassLoader.java:738)    at java.lang.ClassLoader.loadClass(ClassLoader.java:363)            ... 10 more Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.gcm.GcmTaskService" on path: DexPathList[[zip file "/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk"],nativeLibraryDirectories=[/data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/lib/x86, /system/fake-libs, /data/app/com.albums-ieya-j2-1Zn9pFP9odyFew==/base.apk!/lib/x86, /system/lib, /vendor/lib]]    at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:125)    at java.lang.ClassLoader.loadClass(ClassLoader.java:379)    at java.lang.ClassLoader.loadClass(ClassLoader.java:312)

somebody can help me what the problem was ?Thank you for your help

RangeError: Maximum call stack size exceeded in react native with expo

$
0
0

I am trying to create a youtube type of video player app(for learning purposes only) with expo and react native.But I have this very weird issue that each time I save file and hot reload starts it throws error likeRangeError: Maximum call stack size exceeded

I have already looked about this and found that this error is occurring because of recursion. But I can't find any recursion in my code.

But more weird is that first time app runs fine and when I change something it shows this error and app crashes. But if I save the same file without any changes it refreshes and works normally. so it is like each even time I save it shows error and next time I save file it goes away.

I am using expo go app to test this app on my physical device.

Exact code of file is this:

import React, { useRef, useEffect, useState } from "react";import { StyleSheet, Text, View, Dimensions, Pressable } from "react-native";import { Video } from "expo-av";/** config.js contains this values  export const theme = {  backgroundColor: "#f1f1f1",  fontColor: "#212121",};*/import { theme } from "../config";import { PanGestureHandler } from "react-native-gesture-handler";import Animated, {  useAnimatedGestureHandler,  useAnimatedStyle,  useSharedValue,  withTiming,  interpolate,  runOnJS,} from "react-native-reanimated";import * as MediaLibrary from "expo-media-library";const AnimatedVideo = Animated.createAnimatedComponent(Video);const { width, height } = Dimensions.get("window");const BAR_HEIGHT = 60;const BREAK_POINT = 100;const Videos = () => {  const video = useRef(null);  const [status, setStatus] = useState({});  // useEffect(() => {  //   getVideos();  // }, []);  // const getVideos = async () => {  //   try {  //     const { status } = await MediaLibrary.requestPermissionsAsync();  //     if (status === "granted") {  //       const userVideos = await MediaLibrary.getAssetsAsync({  //         first: 999,  //         mediaType: MediaLibrary.MediaType.video,  //       });  //     }  //   } catch (error) {  //     console.log(error);  //   }  // };  const translateY = useSharedValue(0);  const offsetY = useSharedValue(0);  const state = useSharedValue("down");  const onGestureEvent = useAnimatedGestureHandler({    onActive: ({ translationY }) => {      translateY.value = translationY + offsetY.value;    },    onEnd: ({ translationY, velocityY }) => {      const point = translationY + 0.2 * velocityY;      if (state.value === "down") {        if (point > 0) {          // Go down rather close the player          translateY.value = withTiming(BAR_HEIGHT);          offsetY.value = BAR_HEIGHT;        } else {          // Go up          translateY.value = withTiming(-(height - BAR_HEIGHT));          offsetY.value = -(height - BAR_HEIGHT);          state.value = "up";        }      } else if (state.value === "up") {        if (point > 0) {          // Go down          translateY.value = withTiming(0);          offsetY.value = 0;          state.value = "down";        } else {          // Go Full Screen          translateY.value = withTiming(-(height - BAR_HEIGHT));          offsetY.value = -(height - BAR_HEIGHT);          state.value = "full";        }      }    },  });  const videoContStyle = useAnimatedStyle(() => {    return {      width,      height,      backgroundColor: "white",      position: "absolute",      zIndex: 2,      top: 0,      transform: [{ translateY: height - BAR_HEIGHT + translateY.value }],    };  });  const playerContStyle = useAnimatedStyle(() => {    return {      height: interpolate(        translateY.value,        [-(height - BAR_HEIGHT), 0],        [225, BAR_HEIGHT]      ),      width: "100%",      borderWidth: StyleSheet.hairlineWidth,      borderColor: "black",    };  });  const videoStyle = useAnimatedStyle(() => {    return {      width:        translateY.value < -BREAK_POINT          ? "100%"          : interpolate(              translateY.value,              [-BREAK_POINT, 0],              [width, width / 2]            ),      height: "100%",    };  });  return (<View style={styles.container}><View style={styles.mainCont}><Pressable          onPress={() => {            translateY.value = withTiming(-(height - BAR_HEIGHT));            offsetY.value = -(height - BAR_HEIGHT);            state.value = "up";          }}><Text>Go full screen</Text></Pressable></View><Animated.View style={videoContStyle}><View style={styles.gestureCont}><PanGestureHandler onGestureEvent={onGestureEvent}><Animated.View style={playerContStyle}><AnimatedVideo                ref={video}                style={videoStyle}                source={{                  uri: "file:///storage/emulated/0/Download/bannerg004.mp4",                }}                useNativeControls={true}                resizeMode="cover"                onPlaybackStatusUpdate={(newstatus) => setStatus(newstatus)}              /></Animated.View></PanGestureHandler></View><Pressable          onPress={() => {            status.isPlaying              ? video.current.pauseAsync()              : video.current.playAsync();          }}><Text>{status.isPlaying ? "pause" : "Play"}</Text></Pressable></Animated.View></View>  );};export default Videos;const styles = StyleSheet.create({  container: {    ...StyleSheet.absoluteFillObject,    backgroundColor: theme.backgroundColor,  },  mainCont: {    width,    height,  },  videoCont: {    width,    height,    backgroundColor: "lightblue",    position: "absolute",    zIndex: 2,    top: 0,    transform: [{ translateY: height - BAR_HEIGHT }],  },  playerCont: {    height: BAR_HEIGHT,    width: "100%",    borderWidth: StyleSheet.hairlineWidth,    borderColor: "black",  },});

Platform details:

  • Expo sdk: 40.0
  • android device: Samsung galaxy j7 neo(physical device) android 9.0
  • OS: windows 7

I have tried bunch of things like:

  1. removing onGestureEvent from PanGestureHandler but had the same problem.
  2. removing onPlaybackStatusUpdate prop from AnimatedVideo but had the same issue.

I have found that this issues generally happens either becuase of useEffect hook or because of chain rendering. But none of them is valid for this one.

Please, Can someone suggest what I am doing wrong?

React-Native: 'List of devices attached' not showing any device. Also, 'Could not get BatchedBridged' issue

$
0
0

Description

Hi, I'm new to the react-native platform. I followed all the steps given here: react-native getting-started, to setup my development environment.

Details

  • React Native version: 0.42
  • Platform I want to work for: Android
  • Operating System: Linux (Ubuntu 16.04.1 LTS 64-bit)
  • Phone: OnePlus 2 - AndroidVersion 6.0.1 - Marshmallow

I followed these steps: running-on-device, to run the app on my phone connected to my laptop via USB cable. I've enabled debugging over USB and inserted device id in udev rules with the process mentioned.

Now when I run $ adb devicesIt lists no android device attached. Here's how it looks:

enter image description here

Also, when I run $ react-native run-androidthen my phone shows these messages:

enter image description here

enter image description here

Being totally new to the platform, I really need help. Can someone please explain what could be wrong here. Thanks

Please help me to run a react native program on android 10 in termux

$
0
0

I want to do both programing and running apps on my android. So I am trying out termux.I have a working react native program that I wrote on ubuntu.I opened termux navigated to the program folder and did npm install.This is output please help

$ npm installnpm ERR! code EPERMnpm ERR! syscall symlinknpm ERR! path ../@babel/parser/bin/babel-parser.jsnpm ERR! dest /storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parsernpm ERR! errno -1npm ERR! Error: EPERM: operation not permitted, symlink '../@babel/parser/bin/babel-parser.js' -> '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'npm ERR!  [Error: EPERM: operation not permitted, symlink '../@babel/parser/bin/babel-parser.js' -> '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'] {npm ERR!   errno: -1,npm ERR!   code: 'EPERM',npm ERR!   syscall: 'symlink',npm ERR!   path: '../@babel/parser/bin/babel-parser.js',npm ERR!   dest: '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'npm ERR! }npm ERR!npm ERR! The operation was rejected by your operating system.npm ERR! It is likely you do not have the permissions to access this file as the current usernpm ERR!npm ERR! If you believe this might be a permissions issue, please double-check thenpm ERR! permissions of the file and its containing directories, or try runningnpm ERR! the command again as root/Administrator.npm ERR! A complete log of this run can be found in:npm ERR!     /data/data/com.termux/files/home/.npm/_logs/2021-03-20T09_47_18_096Z-debug.log

How do I setup android emulator for react native on M1 Mac?

$
0
0

I looked at the official documentation and it says to install SDK 29 but that doesn't have support for arm64 and won't run on M1. I tried running SDK30 which has arm64 support but that it is giving me error when I try to run run-android command. How do I solve this?


React Native: app doesn't load, but no error messages, after installing react-navigation

$
0
0

I followed all the steps in React Native's get started page, including running npx react-native init AwesomeProject to create a starter project. (I'm following the steps for "React Native CLI Quickstart" / "macOS" / "Android"). Then I open up Android Studio, start the emulator, cd into the project's folder, and run npx react-native run-android. Everything works fine. I get to tweak the starter project here and there, reload, and everything works.

But I need to use React Navigation. I follow the steps here and apparently React Navigation is installed without any issues. Then when I run npx react-native run-android again the thing builds successfully and that Metro thing - that separate Terminal tab/window - says "done". But the emulator doesn't show my app. For a second it shows a blank page and then that disappears and I get the emulator's home screen. That's even if I don't tweak the starter code at all - I'm not even trying to import React Navigation, all I need to do to cause this error is to have it installed.

Here's what my Terminal tabs look like after npx react-native run-android:

enter image description here

enter image description here

I've tried closing Terminal and Android Studio after installing React Navigation. Same thing.

I'm using macOS 10.15.3 and Android Studio 3.5.3.

What am I doing wrong?

Animated Node error on expo go that only happens on android phone

$
0
0

When i open my project with expo go on my android phone it returns this error: "Animated node with tag 1 does not exists". I have no clue about how to fix this, but i found some hints:

1 - It ONLY CRASHES on my android phone, it works fine with my ipad(expo go too) or web.

2 - Appears to have some relation to the stack navigator:

import * as React from 'react';import {createStackNavigator} from '@react-navigation/stack';import SignIn from '../pages/SignIn/index';const AuthStack = createStackNavigator();const AuthRoutes = () => {    return(<AuthStack.Navigator><AuthStack.Screen name="Sign In" component={SignIn}/></AuthStack.Navigator>)};export default AuthRoutes;

If i just call the SignIn(just a form) component on my App.js this crash wont happen. Am I missing something about the use of stack navigator on expo? There is something missing on the android folder?

Here is a print of the error

How to disable the react-native hardware back button?

$
0
0

How to disable the react-native hardware back button on the entire (Android) App?

React Native cannot find Android Studio or SDK

$
0
0

OS: Ubuntu

Running npx react-native doctor yields:

results

As you can see react native does not recognise the existence of android studio or sdk.

I have configured my environment variables to the following:

export ANDROID_HOME=$HOME/opt/Android/Sdkexport PATH=$PATH:$ANDROID_HOME/emulatorexport PATH=$PATH:$ANDROID_HOME/toolsexport PATH=$PATH:$ANDROID_HOME/tools/binexport PATH=$PATH:$ANDROID_HOME/platform-tools

Exact path of Android studio:

/opt/android-studio-ide/android-studio/bin

Exact path of Android Sdk:

/opt/Android/Sdk

Android studios is installed and working, and by extension so is the sdk. I have followed the instructions on how to setup react and ensured all the correct packages have been added. See here:

Snippets from Android Studio

SDK Platforms

SDK Tools 1SDK Tools 2

How to run a react native program on android 10 in termux

$
0
0

I want to do both programming and running apps on my Android. So I am trying out termux. I have a working react native program that I wrote on Ubuntu.

I opened termux navigated to the program folder and did npm install. This is the output:

$ npm installnpm ERR! code EPERMnpm ERR! syscall symlinknpm ERR! path ../@babel/parser/bin/babel-parser.jsnpm ERR! dest /storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parsernpm ERR! errno -1npm ERR! Error: EPERM: operation not permitted, symlink '../@babel/parser/bin/babel-parser.js' -> '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'npm ERR!  [Error: EPERM: operation not permitted, symlink '../@babel/parser/bin/babel-parser.js' -> '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'] {npm ERR!   errno: -1,npm ERR!   code: 'EPERM',npm ERR!   syscall: 'symlink',npm ERR!   path: '../@babel/parser/bin/babel-parser.js',npm ERR!   dest: '/storage/emulated/0/lightBag_ExpoVersion2/node_modules/.bin/parser'npm ERR! }npm ERR!npm ERR! The operation was rejected by your operating system.npm ERR! It is likely you do not have the permissions to access this file as the current usernpm ERR!npm ERR! If you believe this might be a permissions issue, please double-check thenpm ERR! permissions of the file and its containing directories, or try runningnpm ERR! the command again as root/Administrator.npm ERR! A complete log of this run can be found in:npm ERR!     /data/data/com.termux/files/home/.npm/_logs/2021-03-20T09_47_18_096Z-debug.log

Expo app runs on ios and emulator but not on android device

$
0
0

The Expo app will build and run correctly on ios simulator, ios device, and android emulator. but when I build an apk and run on an android device the app freezes after login and will not respond. I'm fairly new to react-native and development in general so I'm not sure what I would be doing wrong?

long-press items inside ScrollView to drag them around in react native? [closed]

$
0
0

Can you please provide a react-native sample code with the following features?

  • Enable the dragging of the element in a ScrollView after a long press
  • ScrollView should be passed when an item is dragging
  • When you drag a row all the way to the edges of the ScrollView, the ScrollView should scroll
  • Rearrange the list items order

What I'm trying to achieve is something like this.

Text


Running react native bare project results in error A problem occurred configuring project ':react-native-reanimated'

$
0
0

I have installed react native through the expo kit and now when I run yarn run android I received that error. I haven't changed anything on the template. I don't know what is happening.? If there are further about feel free to ask. I have also checked the build.gradle of react native reanimated but ,unfortunately , no success has shown up.

FAILURE: Build failed with an exception. * Where:Build file 'C:\Users\David\Desktop\TheGuruApp\node_modules\react-native-reanimated\android\build.gradle' line: 89* What went wrong:A problem occurred configuring project ':react-native-reanimated'.> java.io.IOException: The filename, directory name, or volume label syntax is incorrect* Try:Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.      * Get more help at https://help.gradle.orgBUILD FAILED in 28serror Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment. Run CLI with --verbose flag for more details.Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081FAILURE: Build failed with an exception.* Where:Build file 'C:\Users\David\Desktop\TheGuruApp\node_modules\react-native-reanimated\android\build.gradle' line: 89* What went wrong:A problem occurred configuring project ':react-native-reanimated'.> java.io.IOException: The filename, directory name, or volume label syntax is incorrect* Try:Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.      * Get more help at https://help.gradle.orgBUILD FAILED in 28s

How can I generate an apk that can run without server with react-native?

$
0
0

I've built my app, I can run it on my local emulator (and also on my android device within the same network by changing debug server).

However, I want to build an APK that I can send to someone without access to the development server and I want them to be able to test application.

I see there is a section Using offline bundle on iOS section of the documentation. But I couldn't figure out how to accomplish the same for android. Is this possible? If so, how?

UPDATE: On the answer to this question (Android failed to load JS bundle) it is said that offline bundle can be downloaded from development server. But when I obtain the bundle from development server the image files can't be loaded.

React-native Hermes production build fails

$
0
0

react@17.0.1
react-native@0.63.4

Build without Hermes works fine.

Development build with Hermes works fine.

Production build with Hermes works fine, if I comment-out all my code and just render the first App.ts with just <Text>Works</Text>.

If I put back all the dependencies: Redux, React-navigation, react-native-paper etc - the build process is getting stuck on 34%:

...info Done writing bundle outputinfo Done writing sourcemap outputinfo Copying 32 asset filesinfo Done copying assets/Users/main/git/my-app/app/android/app/build/generated/assets/react/release/index.android.bundle:13:134: warning: the variable "Promise" was not declared in function "isBoldTextEnabled"...

The rest of the logs follows the same pattern:

the variable "SOMETHING" was not declared in function "SOMETHING"

The react-native run-android --variant=release is not throwing warnings, but it is getting stuck identically to the production build:

...info Done copying assets<=====--------> 41% EXECUTING [3m 20s]> :app:bundleReleaseJsAndAssets

As far as I understand, this means that the problem is caused by one of my npm dependencies. Is there an easy way to figure this out without manually poking around each dependency one by one?

I've been through all related questions on StackOverflow and react-native Github issues.

how can i run gradel sync at android studio?

$
0
0

my version is 4.0 but i don't see gradel sync icon or button

how can i find it??

these are my screen

when i google it there are button or icon but i don't have...

enter image description here

enter image description here

where should i find it?....

error while sha release key for my react native project

$
0
0

While trying to get SHA certificate fingerprints I run this line and that was the result line:

keytool -list -v -keystore F:\React-Native Code\emosh-updated\emosh-updated\android\app\emosh.jks -alias key0
Illegal option:  Code\emosh-updated\emosh-updated\android\app\emosh.jkskeytool -list [OPTION]...Lists entries in a keystoreOptions: -rfc                    output in RFC style -alias <alias>          alias name of the entry to process -keystore <keystore>    keystore name -cacerts                access the cacerts keystore -storepass <arg>        keystore password -storetype <type>       keystore type -providername <name>    provider name -addprovider <name>     add security provider by name (e.g. SunPKCS11)   [-providerarg <arg>]    configure argument for -addprovider -providerclass <class>  add security provider by fully-qualified class name   [-providerarg <arg>]    configure argument for -providerclass -providerpath <list>    provider classpath -v                      verbose output -protected              password through protected mechanismUse "keytool -?, -h, or --help" for this help message

What else should I do to solve this error?

Viewing all 29709 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>