import-module

Android NDK import-module / code reuse

荒凉一梦 提交于 2019-11-29 07:28:13
问题 Morning! I've created a small NDK project which allows dynamic serialisation of objects between Java and C++ through JNI. The logic works like this: Bean -> JavaCInterface.Java -> JavaCInterface.cpp -> JavaCInterface.java -> Bean The problem is I want to use this functionality in other projects. I separated out the test code from the project and created a "Tester" project. The tester project sends a Java object through to C++ which then echo's it back to the Java layer. I thought linking

Error:No such property: GROUP for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer

馋奶兔 提交于 2019-11-28 15:43:17
问题 I want to use RecyclerViewLib in my project and for that I downloaded it and imported it as a module to my empty "hello world" Android project. I am using android studio v1.0.1 using sdk manager v24 and this is my app/build.gradle apply plugin: 'com.android.application' android { compileSdkVersion 17 buildToolsVersion "19.1.0" defaultConfig { applicationId "com.example.mk.dragdrop4" minSdkVersion 14 targetSdkVersion 17 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled

How to load PowerShell Module from custom script on vNext build agent?

南笙酒味 提交于 2019-11-28 06:04:37
问题 I am using the standard TFS vNext build step to execute a PowerShell script. Inside the script I am trying to take advantage of some of the functions within the standard TFS Agent modules. Listed here: http://blog.majcica.com/2015/11/14/available-modules-for-tfs-2015-build-tasks/ I have seen the following two lines in many PowerShell scripts found in the build steps: Import-Module "Microsoft.TeamFoundation.DistributedTask.Task.Internal" Import-Module "Microsoft.TeamFoundation.DistributedTask