-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
pluginsdk.zip ## 4.1.1.2 #27
Comments
@peterhaigh Can you please confirm the version of Android Studio that you're using. I verified that I am able to build Below is a script which is used to sanity check the releases, can you please execute and see if your issue is reproduced? Note that it does require that #!/bin/sh
# download release
curl -L -b -s https://github.com/deptofdefense/AndroidTacticalAssaultKit-CIV/releases/download/4.1.1.4/atak-civ-sdk-4.1.1.4.zip --output atak-civ-sdk.zip
# unzip
unzip -q atak-civ-sdk.zip
# enter the plugintemplate dir
cd atak-civ/plugins/plugintemplate
# generate truststore
echo y | $JAVA_HOME/bin/keytool -genkeypair -dname "cn=ATAK Plugin, ou=, o=, c=US" -alias testbuild -keypass testbuild -keystore testbuild.jks -storepass testbuild -validity 10000
# generate local.properties
echo "takDebugKeyFile=../testbuild.jks" >> local.properties
echo "takDebugKeyFilePassword=testbuild" >> local.properties
echo "takDebugKeyAlias=testbuild" >> local.properties
echo "takDebugKeyPassword=testbuild" >> local.properties
echo "takReleaseKeyFile=../testbuild.jks" >> local.properties
echo "takReleaseKeyFilePassword=testbuild" >> local.properties
echo "takReleaseKeyAlias=testbuild" >> local.properties
echo "takReleaseKeyPassword=testbuild" >> local.properties
# build
./gradlew assembleCivDebug |
Hi Thank you again, for your help and time. |
I'm going to mark the issue as resolved, per your last comment. Please open a new issue if you're able to get more detail (e.g. if you can confirm that it appears to be an issue between different versions of Android Studio). |
Hi
Changes to the build.gradle (Module: .....). means that the pluginsdk will not compile anymore in AndroidStudio, with the following error.
Deveopment/AndroidTacticalAssaultKit-CIV/atak/ATAK/plugin1/app/src/main/java/com/atakmap/android/plugintemplate/plugin/PluginTemplateTool.java:4: error: package com.atakmap.android.ipc does not exist
Is there any more information that needs to be set up before this will compile?
Thank you.
The text was updated successfully, but these errors were encountered: