forked from dotnet/android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First Pass at using Resource Designer assembly [WIP]
Context dotnet#6310 Ignore Java.Interop-Tests IntermediateDir Try StrongNaming. Based on code in https://github.com/brutaldev/StrongNameSigner/blob/master/src/Brutal.Dev.StrongNameSigner/SigningHelper.cs Use ICSharpCode.Decompiler to read Resource Designer Assembly Fix breakage Fix error with Aapt2 R.txt Use latest Xamarin.Forms for dotnet tests Disable StrongNaming for now Removed unused code and logging Remove StrongNaming support Revert "Remove StrongNaming support" This reverts commit 7f90638f1788adfa37c4ec4ab3fed9fc48569cb5. Use a cstom snk for the designer strong name Update apkdesc Change to Microsoft.Android.Resource.Designer new test Move CryptoConvert to src-ThirdParty Add StrongNameSigner code and TPN Fix missing file Fix another build error Fix a test Update and Fix the UnitTest update docs Switch to _Microsoft.Android.Resource.Designer.dll update apkdesc update apkdesc
- Loading branch information
1 parent
a6fc4cd
commit df45418
Showing
70 changed files
with
2,614 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
build-tools/xaprepare/xaprepare/ThirdPartyNotices/StrongNameSigner.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
namespace Xamarin.Android.Prepare | ||
{ | ||
[TPN] | ||
class StrongNameSigner_TPN : ThirdPartyNotice | ||
{ | ||
static readonly Uri url = new Uri ("https://github.com/brutaldev/StrongNameSigner/"); | ||
|
||
public override string LicenseFile => string.Empty; | ||
public override string Name => "brutaldev/StrongNameSigner"; | ||
public override Uri SourceUrl => url; | ||
public override string LicenseText => @" | ||
Copyright (c) Werner van Deventer (werner@brutaldev.com). All rights reserved. | ||
Licensed under the Apache License, Version 2.0 (the 'License'); you | ||
may not use this file except in compliance with the License. You may | ||
obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an 'AS IS' BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
"; | ||
|
||
public override bool Include (bool includeExternalDeps, bool includeBuildDeps) => includeExternalDeps; | ||
} | ||
} |
Oops, something went wrong.