Android Studio Access Denied Error on local app folder
I am in a world of trouble. In a position of inheriting an Android App in Java with a team of C# .Net developers.
I am getting an (Access Denied) error to the projects root app folder C:Usersuser.nameDevelopmenttheprojectapp
The project builds, cleans and rebuilds no problem but on debug or run, it fails at this step app:transformDexWithInstantRunDependenciesApkForDebug
.
In the research so far I am getting lost in setting application permissions in the manifest.xml file but this feels more like a local machine folder permission issue more than an application issue.
I have tried running Android Studio in Adminstrator mode and both it and the emulator appear to be running under my username. I have administration priviliges to my machine.
Any help greatly appreciated. I had never heard of gradle until yesterday.
android android-studio android-emulator
|
show 4 more comments
I am in a world of trouble. In a position of inheriting an Android App in Java with a team of C# .Net developers.
I am getting an (Access Denied) error to the projects root app folder C:Usersuser.nameDevelopmenttheprojectapp
The project builds, cleans and rebuilds no problem but on debug or run, it fails at this step app:transformDexWithInstantRunDependenciesApkForDebug
.
In the research so far I am getting lost in setting application permissions in the manifest.xml file but this feels more like a local machine folder permission issue more than an application issue.
I have tried running Android Studio in Adminstrator mode and both it and the emulator appear to be running under my username. I have administration priviliges to my machine.
Any help greatly appreciated. I had never heard of gradle until yesterday.
android android-studio android-emulator
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12
|
show 4 more comments
I am in a world of trouble. In a position of inheriting an Android App in Java with a team of C# .Net developers.
I am getting an (Access Denied) error to the projects root app folder C:Usersuser.nameDevelopmenttheprojectapp
The project builds, cleans and rebuilds no problem but on debug or run, it fails at this step app:transformDexWithInstantRunDependenciesApkForDebug
.
In the research so far I am getting lost in setting application permissions in the manifest.xml file but this feels more like a local machine folder permission issue more than an application issue.
I have tried running Android Studio in Adminstrator mode and both it and the emulator appear to be running under my username. I have administration priviliges to my machine.
Any help greatly appreciated. I had never heard of gradle until yesterday.
android android-studio android-emulator
I am in a world of trouble. In a position of inheriting an Android App in Java with a team of C# .Net developers.
I am getting an (Access Denied) error to the projects root app folder C:Usersuser.nameDevelopmenttheprojectapp
The project builds, cleans and rebuilds no problem but on debug or run, it fails at this step app:transformDexWithInstantRunDependenciesApkForDebug
.
In the research so far I am getting lost in setting application permissions in the manifest.xml file but this feels more like a local machine folder permission issue more than an application issue.
I have tried running Android Studio in Adminstrator mode and both it and the emulator appear to be running under my username. I have administration priviliges to my machine.
Any help greatly appreciated. I had never heard of gradle until yesterday.
android android-studio android-emulator
android android-studio android-emulator
asked Nov 13 '18 at 9:56
K7BuoyK7Buoy
4511618
4511618
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12
|
show 4 more comments
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12
|
show 4 more comments
1 Answer
1
active
oldest
votes
This is done as you have used multilibrary and the methods exceed the limits.
Modify your build.gradle:
dependencies
implementation 'com.android.support:multidex:1.0.3'
include this in application class :
public class YouApplication extends Application
@Override
protected void attachBaseContext(Context base)
super.attachBaseContext(base);
MultiDex.install(this);
Add this class name to the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278316%2fandroid-studio-access-denied-error-on-local-app-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is done as you have used multilibrary and the methods exceed the limits.
Modify your build.gradle:
dependencies
implementation 'com.android.support:multidex:1.0.3'
include this in application class :
public class YouApplication extends Application
@Override
protected void attachBaseContext(Context base)
super.attachBaseContext(base);
MultiDex.install(this);
Add this class name to the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
add a comment |
This is done as you have used multilibrary and the methods exceed the limits.
Modify your build.gradle:
dependencies
implementation 'com.android.support:multidex:1.0.3'
include this in application class :
public class YouApplication extends Application
@Override
protected void attachBaseContext(Context base)
super.attachBaseContext(base);
MultiDex.install(this);
Add this class name to the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
add a comment |
This is done as you have used multilibrary and the methods exceed the limits.
Modify your build.gradle:
dependencies
implementation 'com.android.support:multidex:1.0.3'
include this in application class :
public class YouApplication extends Application
@Override
protected void attachBaseContext(Context base)
super.attachBaseContext(base);
MultiDex.install(this);
Add this class name to the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
This is done as you have used multilibrary and the methods exceed the limits.
Modify your build.gradle:
dependencies
implementation 'com.android.support:multidex:1.0.3'
include this in application class :
public class YouApplication extends Application
@Override
protected void attachBaseContext(Context base)
super.attachBaseContext(base);
MultiDex.install(this);
Add this class name to the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
answered Nov 13 '18 at 10:54
nidhinidhi
233114
233114
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278316%2fandroid-studio-access-denied-error-on-local-app-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you enable multidex in gradle file?@K7Buoy
– Dhanshri
Nov 13 '18 at 9:58
I wish I knew what that meant @Dhanshri. :-(
– K7Buoy
Nov 13 '18 at 10:06
I have found it ... will test. compile 'com.android.support:multidex:1.0.3'
– K7Buoy
Nov 13 '18 at 10:10
Sorry @Dhanshri but that hasn't worked.
– K7Buoy
Nov 13 '18 at 10:11
On a clean vanilla project with HelloWorld activity ... everything runs fine.
– K7Buoy
Nov 13 '18 at 10:12