Unable To Find Explicit Activity Class {}; Have You Declared This Activity In Your Androidmanifest.xml
I'm trying unzip some files in background, so I use IntentService like in google's tutorial. My service class declared in AndroidManifest like this: Copy
to
Intent mServiceIntent = newIntent(context, UnZipService.class);
mServiceIntent.setData(Uri.parse(savedFilePath));
startService(mServiceIntent); // Only this line is changed
Solution 2:
Please declared this activity in your AndroidManifest.xml
Post a Comment for "Unable To Find Explicit Activity Class {}; Have You Declared This Activity In Your Androidmanifest.xml"