Jryan
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 5
-
Created 203.5981.155 AndroidModuleModel getSelectedVariant NoSuchMethodError
AnsweredModule[] modules = ModuleManager.getInstance(project).getModules();AndroidModuleModel module = AndroidModuleModel.get(modules[0]);IdeVariant variant = module.getSelectedVariant(); java.lang.NoSuch... -
Edited ModuleBridgeImpl: Error trying to get the selected variant
AnsweredIm updating an old plugin that stopped working in a newer version of IDEA/AS where I'm trying to get the currently selected build variant. Old Code: Module[] modules = ModuleManager.getInstance(pro... -
Created Plugin Unit Test failing with sun.font.FontManagerFactory error on Ubuntu 16 with JDK 14/15
AnsweredI'm seeing an error when running `./gradlew test` to run my plugin's settings menu's unit tests. Specifically it is failing when trying to create a Hashtable with the line: Hashtable<Integer, JLab... -
Created Hooking the Gradle NDK/CPP Sync
AnsweredMorning, I'm having problems with Gradle returning "C/C++ Configuration Problem" in the Event Log. I have a few custom flags/defines that should only be passed with a certain build variant, but the... -
Edited Module names now contain the project name
AnsweredI'm trying to upgrade my plugin for Android Studio 4.0, and I used to do ModuleManager.getInstance(project).getModules()[1].getName();Which would return e.g. "app" but now returns "projectName.a...