使用Xbuild和Xamarin.Android(以前的Mono for Android)

时间:2013-04-04 15:35:15

标签: jenkins xamarin.android xamarin xbuild

我们正在尝试使用Mac上的Jenkins构建一个Xamarin.Android项目。解决方案文件包含几个不同的项目,其中一个是MonoDroid项目。 MonoDroid项目取决于解决方案中的其他项目。

我遇到的问题是,当我使用xbuild构建解决方案文件时,我无法使用/ t:PackageForAndroid目标,因为它只对MD项目文件有效。

目前在詹金斯,我这样做:

xbuild MyCoolDroidAp/MyCoolDroidApp.sln /p:Configuration=Release /t:Clean
xbuild MyCoolDroidApp/MyCoolDroidApp.sln /p:Configuration=Release /t:Build
xbuild MyCoolDroidApp/MyCoolDroidProject.csproj /p:Configuration=Release /t:PackageForAndroid

这是有效的,但在我看来应该有办法消除第3步。有没有人有任何见解?

3 个答案:

答案 0 :(得分:2)

您无需使用Xamarin.Studio/MonoDevelop来签名& zipalign您的APK,您可以在命令行执行此操作。我很幸运使用rake to compile, sign, and zipalign my APK files。这样的事情对你有用吗?

如果做不到这一点,这里有一个简单的Powershell脚本,你可以轻松地移植它:

# First clean the Release target.
msbuild.exe HelloWorld.csproj /p:Configuration=Release /t:Clean

# Now build the project, using the Release target.
msbuild.exe HelloWorld.csproj /p:Configuration=Release /t:PackageForAndroid

# At this point there is only the unsigned APK - sign it.
# The script will pause here as jarsigner prompts for the password.
# It is possible to provide they keystore password for jarsigner.exe by adding an extra command line parameter -storepass, for example
#    -storepass <MY_SECRET_PASSWORD>
# If this script is to be checked in to source code control then it is not recommended to include the password as part of this script.
& 'C:\Program Files\Java\jdk1.6.0_24\bin\jarsigner.exe' -verbose -sigalg MD5withRSA -digestalg SHA1  -keystore ./xample.keystore -signedjar 
./bin/Release/mono.samples.helloworld-signed.apk 
./bin/Release/mono.samples.helloworld.apk publishingdoc

# Now zipalign it.  The -v parameter tells zipalign to verify the APK afterwards.
& 'C:\Program Files\Android\android-sdk\tools\zipalign.exe' -f -v 4
./bin/Release/mono.samples.helloworld-signed.apk ./helloworld.apk

希望这有帮助。

答案 1 :(得分:0)

关于互联网的共识似乎是我正在以正确的方式这样做。

答案 2 :(得分:0)

关于签名你的apk我使用这样的东西作为我的makefile的一部分,它工作正常:

...

BUILD_DIR = ./builds/$(platform)
KEYSTORE_PATH = your_keystore_pass
STORE_PASS = your_keystore_pass
ANDROID_SDK_PATH = path/to/your/android/sdk/dir 
#example ANDROID_SDK_PATH = /Developer/AndroidSDK
RES_APK = my_apk.apk
APK_NAME = my_signed_apk.apk

...


sign:
  (cd $(BUILD_DIR); jarsigner -verbose -sigalg MD5withRSA -digestalg SHA1 -keystore $(KEYSTORE_PATH) -storepass $(STORE_PASS) result.apk $(STORE_PASS))
  (cd $(BUILD_DIR); $(ANDROID_SDK_PATH)/tools/zipalign -v 4 result.apk $(APK_NAME))
  (cd $(BUILD_DIR);rm result.apk)
  (cd $(BUILD_DIR);rm $(RES_APK))

希望这有帮助