diff --git a/README.md b/README.md index 2892a537..daf1b813 100644 --- a/README.md +++ b/README.md @@ -155,3 +155,8 @@ Swing by our Matrix room to interact with other contributors: This project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details. + +A couple of libraries vendored in Aegis' repository are licensed under a +different license: +- [TextDrawable](app/src/main/java/com/amulyakhare/textdrawable) +- [TrustedIntents](app/src/main/java/info/guardianproject/trustedintents) diff --git a/app/build.gradle b/app/build.gradle index 0fb2de62..10cdded4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -170,7 +170,6 @@ dependencies { implementation 'androidx.recyclerview:recyclerview:1.3.2' implementation "androidx.room:room-runtime:$roomVersion" implementation 'androidx.viewpager2:viewpager2:1.1.0' - implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1' implementation 'com.caverock:androidsvg-aar:1.4' implementation "com.google.dagger:hilt-android:$hiltVersion" implementation 'com.github.avito-tech:krop:0.52' @@ -192,7 +191,6 @@ dependencies { implementation 'com.nulab-inc:zxcvbn:1.9.0' implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'net.lingala.zip4j:zip4j:2.11.5' - implementation 'info.guardianproject.trustedintents:trustedintents:0.2' implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1' implementation 'org.simpleflatmapper:sfm-csv:8.2.3' diff --git a/app/config/libraries/textdrawable.json b/app/config/libraries/textdrawable.json index 529ea1bd..528a6354 100644 --- a/app/config/libraries/textdrawable.json +++ b/app/config/libraries/textdrawable.json @@ -1,5 +1,14 @@ { "uniqueId": "com.amulyakhare:com.amulyakhare.textdrawable", + "funding": [ + + ], + "developers": [ + + ], + "artifactVersion": "1.0.1", + "description": "This light-weight library provides images with letter/text like the Gmail app. It extends the Drawable class thus can be used with existing/custom/network ImageView classes. Also included is a fluent interface for creating drawables and a customizable ColorGenerator.", + "name": "textdrawable", "licenses": [ "MIT" ] diff --git a/app/config/libraries/trustedintents.json b/app/config/libraries/trustedintents.json new file mode 100644 index 00000000..5ba89066 --- /dev/null +++ b/app/config/libraries/trustedintents.json @@ -0,0 +1,23 @@ +{ + "uniqueId": "info.guardianproject.trustedintents:trustedintents", + "funding": [ + + ], + "developers": [ + { + "name": "Guardian Project" + } + ], + "artifactVersion": "0.2", + "description": "TrustedIntents is a library for flexible trusted interactions between Android apps. It is modeled after Android's `signature` protection level for permissions. The key difference is that the framework allows the trusted signature to be set, rather than requiring to match the current app's signature.", + "scm": { + "connection": "scm:https://github.com/guardianproject/TrustedIntents.git", + "url": "scm:https://github.com/guardianproject/TrustedIntents", + "developerConnection": "scm:git@github.com:guardianproject/TrustedIntents.git" + }, + "name": "TrustedIntents", + "website": "https://guardianproject.info/code/trustedintents", + "licenses": [ + "3ca920d1875f7ad7ab04a2a331958577" + ] +} \ No newline at end of file diff --git a/app/config/licenses/3ca920d1875f7ad7ab04a2a331958577.json b/app/config/licenses/3ca920d1875f7ad7ab04a2a331958577.json new file mode 100644 index 00000000..2f0d7c2a --- /dev/null +++ b/app/config/licenses/3ca920d1875f7ad7ab04a2a331958577.json @@ -0,0 +1,5 @@ +{ + "hash": "3ca920d1875f7ad7ab04a2a331958577", + "url": "https://github.com/guardianproject/TrustedIntents/blob/master/LICENSE.txt", + "name": "LGPLv2.1" +} \ No newline at end of file diff --git a/app/src/main/java/com/amulyakhare/textdrawable/LICENSE b/app/src/main/java/com/amulyakhare/textdrawable/LICENSE new file mode 100644 index 00000000..f8646616 --- /dev/null +++ b/app/src/main/java/com/amulyakhare/textdrawable/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2014 Amulya Khare + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/app/src/main/java/com/amulyakhare/textdrawable/TextDrawable.java b/app/src/main/java/com/amulyakhare/textdrawable/TextDrawable.java new file mode 100644 index 00000000..f4105715 --- /dev/null +++ b/app/src/main/java/com/amulyakhare/textdrawable/TextDrawable.java @@ -0,0 +1,316 @@ +package com.amulyakhare.textdrawable; + +import android.graphics.*; +import android.graphics.drawable.ShapeDrawable; +import android.graphics.drawable.shapes.OvalShape; +import android.graphics.drawable.shapes.RectShape; +import android.graphics.drawable.shapes.RoundRectShape; + +/** + * @author amulya + * @datetime 14 Oct 2014, 3:53 PM + */ +public class TextDrawable extends ShapeDrawable { + + private final Paint textPaint; + private final Paint borderPaint; + private static final float SHADE_FACTOR = 0.9f; + private final String text; + private final int color; + private final RectShape shape; + private final int height; + private final int width; + private final int fontSize; + private final float radius; + private final int borderThickness; + + private TextDrawable(Builder builder) { + super(builder.shape); + + // shape properties + shape = builder.shape; + height = builder.height; + width = builder.width; + radius = builder.radius; + + // text and color + text = builder.toUpperCase ? builder.text.toUpperCase() : builder.text; + color = builder.color; + + // text paint settings + fontSize = builder.fontSize; + textPaint = new Paint(); + textPaint.setColor(builder.textColor); + textPaint.setAntiAlias(true); + textPaint.setFakeBoldText(builder.isBold); + textPaint.setStyle(Paint.Style.FILL); + textPaint.setTypeface(builder.font); + textPaint.setTextAlign(Paint.Align.CENTER); + textPaint.setStrokeWidth(builder.borderThickness); + + // border paint settings + borderThickness = builder.borderThickness; + borderPaint = new Paint(); + borderPaint.setColor(getDarkerShade(color)); + borderPaint.setStyle(Paint.Style.STROKE); + borderPaint.setStrokeWidth(borderThickness); + + // drawable paint color + Paint paint = getPaint(); + paint.setColor(color); + + } + + private int getDarkerShade(int color) { + return Color.rgb((int)(SHADE_FACTOR * Color.red(color)), + (int)(SHADE_FACTOR * Color.green(color)), + (int)(SHADE_FACTOR * Color.blue(color))); + } + + @Override + public void draw(Canvas canvas) { + super.draw(canvas); + Rect r = getBounds(); + + + // draw border + if (borderThickness > 0) { + drawBorder(canvas); + } + + int count = canvas.save(); + canvas.translate(r.left, r.top); + + // draw text + int width = this.width < 0 ? r.width() : this.width; + int height = this.height < 0 ? r.height() : this.height; + int fontSize = this.fontSize < 0 ? (Math.min(width, height) / 2) : this.fontSize; + textPaint.setTextSize(fontSize); + canvas.drawText(text, width / 2, height / 2 - ((textPaint.descent() + textPaint.ascent()) / 2), textPaint); + + canvas.restoreToCount(count); + + } + + private void drawBorder(Canvas canvas) { + RectF rect = new RectF(getBounds()); + rect.inset(borderThickness/2, borderThickness/2); + + if (shape instanceof OvalShape) { + canvas.drawOval(rect, borderPaint); + } + else if (shape instanceof RoundRectShape) { + canvas.drawRoundRect(rect, radius, radius, borderPaint); + } + else { + canvas.drawRect(rect, borderPaint); + } + } + + @Override + public void setAlpha(int alpha) { + textPaint.setAlpha(alpha); + } + + @Override + public void setColorFilter(ColorFilter cf) { + textPaint.setColorFilter(cf); + } + + @Override + public int getOpacity() { + return PixelFormat.TRANSLUCENT; + } + + @Override + public int getIntrinsicWidth() { + return width; + } + + @Override + public int getIntrinsicHeight() { + return height; + } + + public static IShapeBuilder builder() { + return new Builder(); + } + + public static class Builder implements IConfigBuilder, IShapeBuilder, IBuilder { + + private String text; + + private int color; + + private int borderThickness; + + private int width; + + private int height; + + private Typeface font; + + private RectShape shape; + + public int textColor; + + private int fontSize; + + private boolean isBold; + + private boolean toUpperCase; + + public float radius; + + private Builder() { + text = ""; + color = Color.GRAY; + textColor = Color.WHITE; + borderThickness = 0; + width = -1; + height = -1; + shape = new RectShape(); + font = Typeface.create("sans-serif-light", Typeface.NORMAL); + fontSize = -1; + isBold = false; + toUpperCase = false; + } + + public IConfigBuilder width(int width) { + this.width = width; + return this; + } + + public IConfigBuilder height(int height) { + this.height = height; + return this; + } + + public IConfigBuilder textColor(int color) { + this.textColor = color; + return this; + } + + public IConfigBuilder withBorder(int thickness) { + this.borderThickness = thickness; + return this; + } + + public IConfigBuilder useFont(Typeface font) { + this.font = font; + return this; + } + + public IConfigBuilder fontSize(int size) { + this.fontSize = size; + return this; + } + + public IConfigBuilder bold() { + this.isBold = true; + return this; + } + + public IConfigBuilder toUpperCase() { + this.toUpperCase = true; + return this; + } + + @Override + public IConfigBuilder beginConfig() { + return this; + } + + @Override + public IShapeBuilder endConfig() { + return this; + } + + @Override + public IBuilder rect() { + this.shape = new RectShape(); + return this; + } + + @Override + public IBuilder round() { + this.shape = new OvalShape(); + return this; + } + + @Override + public IBuilder roundRect(int radius) { + this.radius = radius; + float[] radii = {radius, radius, radius, radius, radius, radius, radius, radius}; + this.shape = new RoundRectShape(radii, null, null); + return this; + } + + @Override + public TextDrawable buildRect(String text, int color) { + rect(); + return build(text, color); + } + + @Override + public TextDrawable buildRoundRect(String text, int color, int radius) { + roundRect(radius); + return build(text, color); + } + + @Override + public TextDrawable buildRound(String text, int color) { + round(); + return build(text, color); + } + + @Override + public TextDrawable build(String text, int color) { + this.color = color; + this.text = text; + return new TextDrawable(this); + } + } + + public interface IConfigBuilder { + public IConfigBuilder width(int width); + + public IConfigBuilder height(int height); + + public IConfigBuilder textColor(int color); + + public IConfigBuilder withBorder(int thickness); + + public IConfigBuilder useFont(Typeface font); + + public IConfigBuilder fontSize(int size); + + public IConfigBuilder bold(); + + public IConfigBuilder toUpperCase(); + + public IShapeBuilder endConfig(); + } + + public static interface IBuilder { + + public TextDrawable build(String text, int color); + } + + public static interface IShapeBuilder { + + public IConfigBuilder beginConfig(); + + public IBuilder rect(); + + public IBuilder round(); + + public IBuilder roundRect(int radius); + + public TextDrawable buildRect(String text, int color); + + public TextDrawable buildRoundRect(String text, int color, int radius); + + public TextDrawable buildRound(String text, int color); + } +} diff --git a/app/src/main/java/com/amulyakhare/textdrawable/util/ColorGenerator.java b/app/src/main/java/com/amulyakhare/textdrawable/util/ColorGenerator.java new file mode 100644 index 00000000..7efe7d5d --- /dev/null +++ b/app/src/main/java/com/amulyakhare/textdrawable/util/ColorGenerator.java @@ -0,0 +1,69 @@ +package com.amulyakhare.textdrawable.util; + +import java.util.Arrays; +import java.util.List; +import java.util.Random; + +/** + * @author amulya + * @datetime 14 Oct 2014, 5:20 PM + */ +public class ColorGenerator { + + public static ColorGenerator DEFAULT; + + public static ColorGenerator MATERIAL; + + static { + DEFAULT = create(Arrays.asList( + 0xfff16364, + 0xfff58559, + 0xfff9a43e, + 0xffe4c62e, + 0xff67bf74, + 0xff59a2be, + 0xff2093cd, + 0xffad62a7, + 0xff805781 + )); + MATERIAL = create(Arrays.asList( + 0xffe57373, + 0xfff06292, + 0xffba68c8, + 0xff9575cd, + 0xff7986cb, + 0xff64b5f6, + 0xff4fc3f7, + 0xff4dd0e1, + 0xff4db6ac, + 0xff81c784, + 0xffaed581, + 0xffff8a65, + 0xffd4e157, + 0xffffd54f, + 0xffffb74d, + 0xffa1887f, + 0xff90a4ae + )); + } + + private final List mColors; + private final Random mRandom; + + public static ColorGenerator create(List colorList) { + return new ColorGenerator(colorList); + } + + private ColorGenerator(List colorList) { + mColors = colorList; + mRandom = new Random(System.currentTimeMillis()); + } + + public int getRandomColor() { + return mColors.get(mRandom.nextInt(mColors.size())); + } + + public int getColor(Object key) { + return mColors.get(Math.abs(key.hashCode()) % mColors.size()); + } +} \ No newline at end of file diff --git a/app/src/main/java/info/guardianproject/GuardianProjectRSA4096.java b/app/src/main/java/info/guardianproject/GuardianProjectRSA4096.java new file mode 100644 index 00000000..2d20f576 --- /dev/null +++ b/app/src/main/java/info/guardianproject/GuardianProjectRSA4096.java @@ -0,0 +1,117 @@ + +package info.guardianproject; + +import info.guardianproject.trustedintents.ApkSignaturePin; + +/** + * This is the second Guardian Project APK signing key. It was generated since + * RSA 1024-bit keys are deprecated. So any new Guardian Project app will be + * signed by this key. It is used to sign these apps: + *
    + *
  • Checkey
  • + *
  • Courier
  • + *
+ * + * @author hans + */ +public final class GuardianProjectRSA4096 extends ApkSignaturePin { + + public GuardianProjectRSA4096() { + fingerprints = new String[] { + "f006a20481c71a690de02e385ab0c9fa4ac1245240f68102682703ba0656867a", + }; + certificates = new byte[][] { + { + 48, -126, 5, -84, 48, -126, 3, -108, 2, 9, 0, -126, -20, 93, -43, 112, 34, + -87, 29, 48, 13, 6, 9, 42, -122, 72, -122, -9, 13, 1, 1, 5, 5, 0, 48, -127, + -105, 49, 11, 48, 9, 6, 3, 85, 4, 6, 19, 2, 85, 83, 49, 17, 48, 15, 6, 3, + 85, 4, 8, 12, 8, 78, 101, 119, 32, 89, 111, 114, 107, 49, 17, 48, 15, 6, 3, + 85, 4, 7, 12, 8, 78, 101, 119, 32, 89, 111, 114, 107, 49, 25, 48, 23, 6, 3, + 85, 4, 10, 12, 16, 71, 117, 97, 114, 100, 105, 97, 110, 32, 80, 114, 111, + 106, 101, 99, 116, 49, 29, 48, 27, 6, 3, 85, 4, 3, 12, 20, 103, 117, 97, + 114, 100, 105, 97, 110, 112, 114, 111, 106, 101, 99, 116, 46, 105, 110, + 102, 111, 49, 40, 48, 38, 6, 9, 42, -122, 72, -122, -9, 13, 1, 9, 1, 22, + 25, 114, 111, 111, 116, 64, 103, 117, 97, 114, 100, 105, 97, 110, 112, 114, + 111, 106, 101, 99, 116, 46, 105, 110, 102, 111, 48, 30, 23, 13, 49, 52, 48, + 53, 49, 52, 49, 55, 53, 55, 50, 57, 90, 23, 13, 52, 49, 48, 57, 50, 56, 49, + 55, 53, 55, 50, 57, 90, 48, -127, -105, 49, 11, 48, 9, 6, 3, 85, 4, 6, 19, + 2, 85, 83, 49, 17, 48, 15, 6, 3, 85, 4, 8, 12, 8, 78, 101, 119, 32, 89, + 111, 114, 107, 49, 17, 48, 15, 6, 3, 85, 4, 7, 12, 8, 78, 101, 119, 32, 89, + 111, 114, 107, 49, 25, 48, 23, 6, 3, 85, 4, 10, 12, 16, 71, 117, 97, 114, + 100, 105, 97, 110, 32, 80, 114, 111, 106, 101, 99, 116, 49, 29, 48, 27, 6, + 3, 85, 4, 3, 12, 20, 103, 117, 97, 114, 100, 105, 97, 110, 112, 114, 111, + 106, 101, 99, 116, 46, 105, 110, 102, 111, 49, 40, 48, 38, 6, 9, 42, -122, + 72, -122, -9, 13, 1, 9, 1, 22, 25, 114, 111, 111, 116, 64, 103, 117, 97, + 114, 100, 105, 97, 110, 112, 114, 111, 106, 101, 99, 116, 46, 105, 110, + 102, 111, 48, -126, 2, 34, 48, 13, 6, 9, 42, -122, 72, -122, -9, 13, 1, 1, + 1, 5, 0, 3, -126, 2, 15, 0, 48, -126, 2, 10, 2, -126, 2, 1, 0, -51, 108, + 83, -44, 61, 81, 46, 61, 2, -61, 46, 60, 2, -30, 44, 38, -70, -63, -93, + -66, -57, 1, 2, -32, -80, -82, 98, -26, -70, -34, 60, -65, -55, -43, 16, + -63, -89, -104, 50, 108, -26, -2, -3, -55, -77, 47, 75, 89, 99, 12, -32, + 32, 120, -26, -81, 54, 95, -57, -114, -100, -39, -110, -4, 120, 90, 90, + -40, -89, -53, 63, -122, -45, -80, 32, -6, -12, -29, -107, 45, 10, -23, 76, + 5, 112, -15, -63, 48, 35, -61, 0, -107, -110, 44, -46, -126, -30, -30, -33, + 86, 22, 30, 8, -72, 29, 75, 121, 31, -120, 119, 59, -57, 19, -64, 31, 84, + -94, -38, 91, 82, 92, -95, 66, 2, 120, -37, -113, 126, 54, -83, 83, -125, + 122, 110, -106, 80, 59, -127, -72, -23, 64, 105, 20, 25, -41, -3, -61, -44, + 51, -28, 17, 36, -90, -18, -25, 96, 37, -93, -48, 98, 47, 27, 49, 40, -31, + -62, -102, -49, 28, -55, 50, -38, -70, -83, 101, 97, 96, -122, -114, 18, + 47, 119, 117, -7, -55, -64, -1, 96, -120, 61, -89, -70, -7, -89, 113, -41, + 88, 27, 26, 95, -52, 53, 59, 7, 11, 79, 86, 31, -109, -21, 120, -15, 38, + 106, 33, -121, 82, 18, 45, 32, 49, 93, -26, -74, -104, 4, -122, 96, 39, + 126, -24, 16, 119, -45, -119, 110, -31, 55, -109, 53, 53, -11, -58, -124, + -84, 41, -42, 64, 17, -5, -78, -57, -100, 118, -105, -38, -94, 84, -16, + -53, -106, -11, 76, 81, 70, -83, -56, 73, -96, -100, -18, 55, -3, -3, 34, + -97, -62, 59, -17, -79, 91, -9, 122, 95, -108, -121, -76, -62, -72, 61, + -82, 105, -99, -59, 10, 51, 52, 77, -105, -127, 37, 79, 88, -127, 27, 39, + 44, 15, 123, -59, -118, -96, 61, -28, 23, -54, 124, 100, 57, 37, 123, -83, + -124, 11, 123, 73, -53, 18, 119, -39, -13, 46, 123, -55, 4, -91, 114, 93, + -116, -98, 21, 95, -30, -82, -108, 87, -65, -8, 30, 67, 14, 22, 79, -64, + 86, -128, -83, 74, 69, -42, 9, -18, -120, -52, 7, 62, 78, 88, -53, -125, + 41, -122, -91, -34, -110, 111, -118, -25, 25, -83, 90, -95, 84, -121, 95, + 72, -53, -14, -14, -48, 65, 4, 23, 99, 56, 23, -20, 9, 46, 63, 83, -26, + -86, 54, -104, 79, 9, 94, -91, -69, 10, -125, -17, -28, -32, -79, 5, -11, + 37, 103, -46, -75, 71, -119, 39, 48, -53, -51, 118, 43, 28, 68, 14, -33, + -82, -76, -98, 1, 41, 94, -128, -86, 51, -89, 17, -31, 38, -70, -2, -27, + -105, -87, 103, 93, 19, 73, -106, -82, -76, 110, -48, -124, -51, 92, -91, + -51, 22, 1, -48, 52, -127, -24, 26, -77, 4, 22, 33, 24, -128, -1, 9, -42, + 23, -53, 78, 10, -39, -115, -95, 17, 100, 90, 16, -23, -127, -38, 10, -62, + -64, 113, -115, -114, 78, -11, -124, 113, 113, -42, -66, 114, -98, -40, + -41, 2, 3, 1, 0, 1, 48, 13, 6, 9, 42, -122, 72, -122, -9, 13, 1, 1, 5, 5, + 0, 3, -126, 2, 1, 0, -54, 125, -113, -9, -45, 82, 2, -79, -87, 31, -17, + -10, 117, 16, 1, 67, -63, 57, -49, -81, -90, 48, 7, -58, 89, -29, 120, 84, + 116, 51, 54, -94, 74, -111, -11, 53, -13, 53, -125, -76, -64, 46, -35, 19, + -19, 25, 36, -82, 66, 113, -14, -6, -63, 83, 15, 8, -77, -74, -94, -53, + -35, -61, -75, 52, 13, -128, 9, 96, 66, 46, 46, -57, 24, -28, -39, -46, 96, + -115, -63, 92, -70, 51, 49, -94, 96, 77, 16, 108, -59, -28, 112, -2, -3, + -87, 27, 56, 118, 29, -95, -76, -70, 34, -105, -24, -104, 70, 24, -88, -29, + -28, -101, -98, 24, -48, -32, -111, 97, 61, -70, -21, -111, 70, -55, 68, + -76, 125, -61, 56, -122, 48, -118, 74, 61, -101, -46, -43, -12, -114, -116, + -57, -108, 91, -109, -62, -117, -76, -48, 109, 81, -22, -113, -73, 64, -61, + 102, 92, -117, -9, -100, 62, -90, 99, 102, -50, -41, -75, 31, 5, -76, -31, + -85, 118, -57, -21, 102, 71, 41, -34, -45, -92, 88, 82, -95, 65, -100, -31, + -28, -85, -37, 94, -52, 72, 39, 55, -42, 18, 29, 115, 23, -106, -2, -54, + -45, 61, 53, 62, 107, 109, -65, 69, 4, -123, 124, -30, -54, -44, 38, 119, + 49, -123, -27, -50, 77, -9, -40, -114, -50, -70, -123, 86, -115, 127, 45, + 42, 23, -25, -83, -81, -38, -84, -3, 99, -36, 12, -67, -39, -110, 21, -40, + -128, 6, -96, -24, -116, -62, 63, 127, 39, 57, -83, -63, 0, 127, -12, 73, + 85, -41, -101, -70, -48, -94, -94, -73, -38, -115, -62, -34, 62, -92, 96, + 16, 6, -19, -84, 38, -93, -117, -52, 32, 92, -21, 123, -117, 81, 50, -71, + 103, 121, 127, 4, -3, -40, 62, 100, 22, -123, -68, -69, -54, -127, -67, 50, + -114, 77, -30, 26, -102, 29, 106, 48, 83, 99, 73, 96, 124, -77, 51, 8, 15, + 40, 72, -108, 105, 62, 119, -113, -90, 57, -62, 127, -57, -21, -40, -109, + 96, 101, 71, -40, -101, 127, 69, 110, 43, 59, -102, -8, -42, -70, -24, 51, + -51, 54, 42, -110, -119, 41, -101, 45, -101, -124, 56, -75, -26, 86, -65, + 54, 21, -88, -30, 79, -26, -127, 121, -102, -48, -25, -62, 99, 76, -90, + -48, -37, 123, 9, 67, 51, -41, -116, 29, 69, 88, 93, -42, 23, 73, -112, 24, + -85, 60, 1, 3, -95, 12, -49, -55, 95, 109, -37, 10, -124, 119, -52, -31, + 91, 55, -67, 99, 87, -55, 97, 25, -9, -119, -41, -98, 100, -14, 70, -44, + -63, 60, -127, -99, 15, 49, 22, -118, -49, 66, -106, 36, -34, -5, 6, -48, + 123, -79, 115, 57, 30, -3, -34, -67, 91, 34, 3, -52, -106, 79, -63, 125, + 123, -16, -120, -53, -98, 34, 86, -60, 94, 78, -91, -34, 0, -8, 73, -119, + -87, 12, -101, -112, -10, -79, 10, 105, -82, 120, -106, -9, 99, 57, -63, + -26, 125, -80, 102, -106, -11, -91, -1, 37, 33 + }, + }; + } +} \ No newline at end of file diff --git a/app/src/main/java/info/guardianproject/trustedintents/ApkSignaturePin.java b/app/src/main/java/info/guardianproject/trustedintents/ApkSignaturePin.java new file mode 100644 index 00000000..ba72b3a2 --- /dev/null +++ b/app/src/main/java/info/guardianproject/trustedintents/ApkSignaturePin.java @@ -0,0 +1,87 @@ + +package info.guardianproject.trustedintents; + +import android.content.pm.Signature; + +import java.math.BigInteger; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.Arrays; + +public abstract class ApkSignaturePin { + + protected String[] fingerprints; // hex-encoded SHA-256 hashes of the certs + protected byte[][] certificates; // array of DER-encoded X.509 certificates + private Signature[] signatures; + + public Signature[] getSignatures() { + if (signatures == null) { + signatures = new Signature[certificates.length]; + for (int i = 0; i < certificates.length; i++) + signatures[i] = new Signature(certificates[i]); + } + return signatures; + } + + /** + * Gets the fingerprint of the first certificate in the signature. + * + * @param algorithm - Which hash to use (e.g. MD5, SHA1, SHA-256) + * @return the fingerprint as hex String + */ + public String getFingerprint(String algorithm) { + try { + MessageDigest md = MessageDigest.getInstance(algorithm); + byte[] hashBytes = md.digest(certificates[0]); + BigInteger bi = new BigInteger(1, hashBytes); + md.reset(); + return String.format("%0" + (hashBytes.length << 1) + "x", bi); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + } + return null; + } + + /** + * Gets the MD5 fingerprint of the first certificate in the signature. + * + * @return the MD5 sum as hex String + */ + public String getMD5Fingerprint() { + return getFingerprint("MD5"); + } + + /** + * Gets the SHA1 fingerprint of the first certificate in the signature. + * + * @return the SHA1 sum as hex String + */ + public String getSHA1Fingerprint() { + return getFingerprint("SHA1"); + } + + /** + * Gets the SHA-256 fingerprint of the first certificate in the signature. + * + * @return the SHA-256 sum as hex String + */ + public String getSHA256Fingerprint() { + return getFingerprint("SHA-256"); + } + + /** + * Compares the calculated SHA-256 cert fingerprint to the stored one. + * + * @return the result of the comparison + */ + public boolean doFingerprintsMatchCertificates() { + if (fingerprints == null || certificates == null) + return false; + String[] calcedFingerprints = new String[certificates.length]; + for (int i = 0; i < calcedFingerprints.length; i++) + calcedFingerprints[i] = getSHA256Fingerprint(); + if (fingerprints.length == 0 || calcedFingerprints.length == 0) + return false; + return Arrays.equals(fingerprints, calcedFingerprints); + } +} \ No newline at end of file diff --git a/app/src/main/java/info/guardianproject/trustedintents/LICENSE.txt b/app/src/main/java/info/guardianproject/trustedintents/LICENSE.txt new file mode 100644 index 00000000..4362b491 --- /dev/null +++ b/app/src/main/java/info/guardianproject/trustedintents/LICENSE.txt @@ -0,0 +1,502 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/app/src/main/java/info/guardianproject/trustedintents/TrustedIntents.java b/app/src/main/java/info/guardianproject/trustedintents/TrustedIntents.java new file mode 100644 index 00000000..10f4b803 --- /dev/null +++ b/app/src/main/java/info/guardianproject/trustedintents/TrustedIntents.java @@ -0,0 +1,271 @@ + +package info.guardianproject.trustedintents; + +import android.app.Activity; +import android.content.ActivityNotFoundException; +import android.content.ComponentName; +import android.content.Context; +import android.content.Intent; +import android.content.pm.ActivityInfo; +import android.content.pm.PackageInfo; +import android.content.pm.PackageManager; +import android.content.pm.PackageManager.NameNotFoundException; +import android.content.pm.ResolveInfo; +import android.content.pm.Signature; +import android.text.TextUtils; +import android.util.Log; + +import java.lang.reflect.Constructor; +import java.security.cert.CertificateException; +import java.util.LinkedHashSet; + +public class TrustedIntents { + + private static TrustedIntents instance; + + private static PackageManager pm; + + private final LinkedHashSet pinList; + + private TrustedIntents(Context context) { + pm = context.getPackageManager(); + this.pinList = new LinkedHashSet(); + } + + public static TrustedIntents get(Context context) { + if (instance == null) + instance = new TrustedIntents(context); + return instance; + } + + /** + * Check whether a resolved {@link Activity} is trusted. + * + * @param resolveInfo the one to check + * @return whether the {@code Intent}'s receiver is trusted + */ + public boolean isReceiverTrusted(ResolveInfo resolveInfo) { + return isPackageNameTrusted(resolveInfo.activityInfo.packageName); + } + + /** + * Check whether a resolved {@link Activity} is trusted. + * + * @param activityInfo the one to check + * @return whether the {@code Intent}'s receiver is trusted + */ + public boolean isReceiverTrusted(ActivityInfo activityInfo) { + return isPackageNameTrusted(activityInfo.packageName); + } + + /** + * Check an {@link Intent} is trusted based on the {@code packageName} set + * by {@link Intent#setPackage(String)} + * + * @param intent the one to check + * @return whether the {@code Intent}'s receiver is trusted + */ + public boolean isReceiverTrusted(Intent intent) { + if (!isIntentSane(intent)) + return false; + String packageName = intent.getPackage(); + if (TextUtils.isEmpty(packageName)) { + packageName = intent.getComponent().getPackageName(); + } + return isPackageNameTrusted(packageName); + } + + /** + * Check whether a {@code packageName} is trusted. + * + * @param packageName the one to check + * @return whether the {@code packageName} is trusted + */ + public boolean isPackageNameTrusted(String packageName) { + try { + checkTrustedSigner(packageName); + } catch (NameNotFoundException e) { + e.printStackTrace(); + return false; + } catch (CertificateException e) { + return false; + } + return true; + } + + /** + * Returns an {@link Intent} if the sending app is signed by one of + * the trusted signing keys as set in {@link #addTrustedSigner(Class)}. + * + * @returns {@code null} if there is no {@code Intent} or if the + * sender is not trusted. + * @see #addTrustedSigner(Class) + */ + public Intent getIntentFromTrustedSender(Activity activity) { + Intent intent = activity.getIntent(); + String packageName = getCallingPackageName(activity); + if (TextUtils.isEmpty(packageName)) { + return null; + } + if (isPackageNameTrusted(packageName)) { + return intent; + } + return null; + } + + /** + * Get the package name of the {@link Activity} that sent the + * {@link Intent} that started this {@code Activity}. + *

+ * WARNING: If the {@code Activity} has + * {@code android:launchMode="singleInstance"} or {@code "singleTask"}, then + * this method will not disconnect because it is not possible to get the + * calling {@code Activity}, as set by + * {@link Activity#startActivityForResult(Intent, int)} + * + * @param activity the {@code Activity} to check for the {@code Intent} + * @return the package of the sending app or {@code null} if it was not a + * {@code ACTION_CONNECT Intent} or the {@code Intent} was not sent + * with {@link Activity#startActivityForResult(Intent, int)} + */ + public static String getCallingPackageName(Activity activity) { + // getCallingPackage() was unstable until android-18, use this + ComponentName componentName = activity.getCallingActivity(); + if (componentName == null) + return null; + String packageName = componentName.getPackageName(); + if (TextUtils.isEmpty(packageName)) { + Log.e(activity.getClass().getSimpleName(), + "Received Intent without sender! The Intent must be sent using startActivityForResult() and received without launchMode singleTask or singleInstance!"); + } + return packageName; + } + + /** + * This is used to check whether an {@link Intent} that will be sent is + * complete. It should not be used with {@code Intent}s + * that have been received already. + */ + private boolean isIntentSane(Intent intent) { + if (intent == null) + return false; + if (TextUtils.isEmpty(intent.getPackage())) { + ComponentName componentName = intent.getComponent(); + if (componentName == null || TextUtils.isEmpty(componentName.getPackageName())) { + return false; + } + } + return true; + } + + /** + * Add an APK signature that is always trusted for any packageName. + * + * @param cls {@link Class} of the {@link ApkSignaturePin} to trust + * @return boolean + * @throws {@link IllegalArgumentException} the class cannot be instantiated + */ + public boolean addTrustedSigner(Class cls) { + try { + Constructor constructor = cls.getConstructor(); + return pinList.add((ApkSignaturePin) constructor.newInstance((Object[]) null)); + } catch (Exception e) { + e.printStackTrace(); + throw new IllegalArgumentException(e); + } + } + + /** + * Remove an APK signature from the trusted set. + * + * @param cls {@link Class} of the {@link ApkSignaturePin} to remove + */ + public boolean removeTrustedSigner(Class cls) { + for (ApkSignaturePin pin : pinList) { + if (pin.getClass().equals(cls)) { + return pinList.remove(pin); + } + } + return false; + } + + /** + * Remove all {@link ApkSignaturePin}s from the trusted set. + */ + public boolean removeAllTrustedSigners() { + pinList.clear(); + return pinList.isEmpty(); + } + + /** + * Check if a {@link ApkSignaturePin} is trusted. + * + * @param cls {@link Class} of the {@link ApkSignaturePin} to check + */ + public boolean isTrustedSigner(Class cls) { + for (ApkSignaturePin pin : pinList) { + if (pin.getClass().equals(cls)) { + return true; + } + } + return false; + } + + public void checkTrustedSigner(String packageName) + throws NameNotFoundException, CertificateException { + PackageInfo packageInfo = pm.getPackageInfo(packageName, PackageManager.GET_SIGNATURES); + checkTrustedSigner(packageInfo.signatures); + } + + public void checkTrustedSigner(PackageInfo packageInfo) + throws NameNotFoundException, CertificateException { + checkTrustedSigner(packageInfo.signatures); + } + + public void checkTrustedSigner(Signature[] signatures) + throws NameNotFoundException, CertificateException { + if (signatures == null || signatures.length == 0) + throw new CertificateException("signatures cannot be null or empty!"); + for (int i = 0; i < signatures.length; i++) + if (signatures[i] == null || signatures[i].toByteArray().length == 0) + throw new CertificateException("Certificates cannot be null or empty!"); + + // check whether the APK signer is trusted for all apps + for (ApkSignaturePin pin : pinList) + if (areSignaturesEqual(signatures, pin.getSignatures())) + return; // found a matching trusted APK signer + + throw new CertificateException("APK signatures did not match!"); + } + + public boolean areSignaturesEqual(Signature[] sigs0, Signature[] sigs1) { + // TODO where is Android's implementation of this that I can just call? + if (sigs0 == null || sigs1 == null) + return false; + if (sigs0.length == 0 || sigs1.length == 0) + return false; + if (sigs0.length != sigs1.length) + return false; + for (int i = 0; i < sigs0.length; i++) + if (!sigs0[i].equals(sigs1[i])) + return false; + return true; + } + + public void startActivity(Context context, Intent intent) throws CertificateException { + if (!isIntentSane(intent)) + throw new ActivityNotFoundException("The intent was null or empty!"); + String packageName = intent.getPackage(); + if (TextUtils.isEmpty(packageName)) { + packageName = intent.getComponent().getPackageName(); + intent.setPackage(packageName); + } + try { + checkTrustedSigner(packageName); + } catch (NameNotFoundException e) { + e.printStackTrace(); + throw new ActivityNotFoundException(e.getLocalizedMessage()); + } + context.startActivity(intent); + } +} diff --git a/app/src/main/res/raw/aboutlibraries.json b/app/src/main/res/raw/aboutlibraries.json index 22aa6dfb..914eeec3 100644 --- a/app/src/main/res/raw/aboutlibraries.json +++ b/app/src/main/res/raw/aboutlibraries.json @@ -1,6 +1,6 @@ { "metadata": { - "generated": "2024-03-23T12:05:55.114Z" + "generated": "2024-08-26T21:01:22.99Z" }, "libraries": [ { @@ -13,14 +13,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.8.2", + "artifactVersion": "1.9.1", "description": "Provides the base Activity subclass and the relevant hooks to build a composable structure on top.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Activity", - "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.8.2", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.9.1", "licenses": [ "Apache-2.0" ], @@ -38,14 +38,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.8.2", + "artifactVersion": "1.9.1", "description": "Kotlin extensions for 'activity' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Activity Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.8.2", + "website": "https://developer.android.com/jetpack/androidx/releases/activity#1.9.1", "licenses": [ "Apache-2.0" ], @@ -63,17 +63,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.4.0", "description": "Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Experimental annotation", - "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.4.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.annotation:annotation-jvm", @@ -85,17 +88,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.6.0", - "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs.", + "artifactVersion": "1.8.0", + "description": "Provides source annotations for tooling and readability.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, - "name": "Support Annotations", - "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.6.0", + "name": "Annotation", + "website": "https://developer.android.com/jetpack/androidx/releases/annotation#1.8.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.appcompat:appcompat", @@ -107,17 +113,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.6.1", - "description": "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.", + "artifactVersion": "1.7.0", + "description": "Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, - "name": "Android AppCompat Library", - "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.6.1", + "name": "AppCompat", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.appcompat:appcompat-resources", @@ -129,17 +138,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.6.1", - "description": "The Resources Library is a static library that you can add to your Android application in order to use resource APIs that backport the latest APIs to older versions of the platform. Compatible on devices running API 14 or later.", + "artifactVersion": "1.7.0", + "description": "Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, - "name": "Android Resources Library", - "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.6.1", + "name": "AppCompat Resources", + "website": "https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.arch.core:core-common", @@ -217,14 +229,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.3.4", "description": "Camera2 implementation and extensions for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Camera2", - "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.4", "licenses": [ "Apache-2.0" ] @@ -239,14 +251,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.3.4", "description": "Core components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Camera Core", - "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.4", "licenses": [ "Apache-2.0", "44d1a25c593283261968a15c8cc213cd" @@ -262,14 +274,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.3.4", "description": "Lifecycle components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Camera Lifecycle", - "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.4", "licenses": [ "Apache-2.0" ] @@ -284,14 +296,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.3.4", "description": "Video components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Camera Video", - "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.4", "licenses": [ "Apache-2.0" ] @@ -306,14 +318,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.1", + "artifactVersion": "1.3.4", "description": "UI tools for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Camera View", - "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.1", + "website": "https://developer.android.com/jetpack/androidx/releases/camera#1.3.4", "licenses": [ "Apache-2.0" ] @@ -406,6 +418,28 @@ "Apache-2.0" ] }, + { + "uniqueId": "androidx.concurrent:concurrent-futures-ktx", + "funding": [ + + ], + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "1.1.0", + "description": "Kotlin Extensions for Androidx implementation of Guava's ListenableFuture", + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "http://source.android.com" + }, + "name": "AndroidX Futures Kotlin Extensions", + "website": "https://developer.android.com/topic/libraries/architecture/index.html", + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "androidx.constraintlayout:constraintlayout", "funding": [ @@ -482,17 +516,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.12.0", + "artifactVersion": "1.13.1", "description": "Provides backward-compatible implementations of Android platform APIs and features.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Core", - "website": "https://developer.android.com/jetpack/androidx/releases/core#1.12.0", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.13.1", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.core:core-ktx", @@ -504,17 +541,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.12.0", + "artifactVersion": "1.13.1", "description": "Kotlin extensions for 'core' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Core Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/core#1.12.0", + "website": "https://developer.android.com/jetpack/androidx/releases/core#1.13.1", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.cursoradapter:cursoradapter", @@ -590,7 +630,7 @@ "developers": [ ], - "artifactVersion": "8.2.2", + "artifactVersion": "8.5.0", "description": "", "name": "androidx.databinding:viewbinding", "licenses": [ @@ -673,14 +713,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.2.0", + "artifactVersion": "1.3.0", "description": "Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Emoji2 Compat", - "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0", "licenses": [ "Apache-2.0" ] @@ -695,14 +735,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.2.0", + "artifactVersion": "1.3.0", "description": "View helpers for Emoji2", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Android Emoji2 Compat view helpers", - "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0", + "website": "https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0", "licenses": [ "Apache-2.0" ] @@ -818,7 +858,7 @@ ] }, { - "uniqueId": "androidx.lifecycle:lifecycle-common", + "uniqueId": "androidx.lifecycle:lifecycle-common-jvm", "funding": [ ], @@ -827,14 +867,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle-Common", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle-Common", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -852,14 +892,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle LiveData", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle LiveData", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -877,14 +917,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle LiveData Core", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle LiveData Core", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -902,14 +942,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Kotlin extensions for 'livedata-core' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "LiveData Core Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -927,14 +967,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Kotlin extensions for 'livedata' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "LiveData Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -952,14 +992,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle Process", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle Process", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -968,7 +1008,7 @@ } }, { - "uniqueId": "androidx.lifecycle:lifecycle-runtime", + "uniqueId": "androidx.lifecycle:lifecycle-runtime-android", "funding": [ ], @@ -977,14 +1017,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle Runtime", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle Runtime", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -993,7 +1033,7 @@ } }, { - "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx", + "uniqueId": "androidx.lifecycle:lifecycle-runtime-ktx-android", "funding": [ ], @@ -1002,14 +1042,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Kotlin extensions for 'lifecycle' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -1027,14 +1067,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle ViewModel", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle ViewModel", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -1052,14 +1092,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Kotlin extensions for 'viewmodel' artifact", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle ViewModel Kotlin Extensions", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -1077,14 +1117,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "2.7.0", + "artifactVersion": "2.8.4", "description": "Android Lifecycle ViewModel", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "Lifecycle ViewModel with SavedState", - "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0", + "website": "https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.4", "licenses": [ "Apache-2.0" ], @@ -1277,14 +1317,14 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.3.0", + "artifactVersion": "1.3.1", "description": "Allows libraries to prepopulate ahead of time compilation traces to be read by ART", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "androidx.profileinstaller:profileinstaller", - "website": "https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.3.0", + "website": "https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.3.1", "licenses": [ "Apache-2.0" ] @@ -1333,6 +1373,50 @@ "Apache-2.0" ] }, + { + "uniqueId": "androidx.room:room-common", + "funding": [ + + ], + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.6.1", + "description": "Android Room-Common", + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "name": "Room-Common", + "website": "https://developer.android.com/jetpack/androidx/releases/room#2.6.1", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.room:room-runtime", + "funding": [ + + ], + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.6.1", + "description": "Android Room-Runtime", + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "name": "Room-Runtime", + "website": "https://developer.android.com/jetpack/androidx/releases/room#2.6.1", + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "androidx.savedstate:savedstate", "funding": [ @@ -1399,6 +1483,50 @@ "Apache-2.0" ] }, + { + "uniqueId": "androidx.sqlite:sqlite", + "funding": [ + + ], + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.4.0", + "description": "Android DB", + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "name": "SQLite", + "website": "https://developer.android.com/jetpack/androidx/releases/sqlite#2.4.0", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "androidx.sqlite:sqlite-framework", + "funding": [ + + ], + "developers": [ + { + "name": "The Android Open Source Project" + } + ], + "artifactVersion": "2.4.0", + "description": "The implementation of Support SQLite library using the framework code.", + "scm": { + "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", + "url": "https://cs.android.com/androidx/platform/frameworks/support" + }, + "name": "SQLite Framework Integration", + "website": "https://developer.android.com/jetpack/androidx/releases/sqlite#2.4.0", + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "androidx.startup:startup-runtime", "funding": [ @@ -1431,7 +1559,7 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "3.5.1", + "artifactVersion": "3.6.1", "description": "The AndroidX Test Library provides an extensive framework for testing Android apps", "name": "AndroidX Test Library", "website": "https://developer.android.com/testing", @@ -1449,7 +1577,7 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.1.5", + "artifactVersion": "1.2.1", "description": "The AndroidX Test Library provides an extensive framework for testing Android apps", "name": "AndroidX Test Library", "website": "https://developer.android.com/testing", @@ -1467,7 +1595,7 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.4.2", + "artifactVersion": "1.5.0", "description": "The AndroidX Test Library provides an extensive framework for testing Android apps", "name": "AndroidX Test Library", "website": "https://developer.android.com/testing", @@ -1476,7 +1604,7 @@ ] }, { - "uniqueId": "androidx.test:annotation", + "uniqueId": "androidx.test:core", "funding": [ ], @@ -1485,7 +1613,7 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.0.1", + "artifactVersion": "1.6.1", "description": "The AndroidX Test Library provides an extensive framework for testing Android apps", "name": "AndroidX Test Library", "website": "https://developer.android.com/testing", @@ -1525,17 +1653,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.4.1", + "artifactVersion": "1.5.0", "description": "Android Transition Support Library", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, - "name": "Android Transition Support Library", - "website": "https://developer.android.com/jetpack/androidx/releases/transition#1.4.1", + "name": "Transition", + "website": "https://developer.android.com/jetpack/androidx/releases/transition#1.5.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.vectordrawable:vectordrawable", @@ -1613,17 +1744,20 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.1.0-beta02", + "artifactVersion": "1.1.0", "description": "AndroidX Widget ViewPager2", "scm": { "connection": "scm:git:https://android.googlesource.com/platform/frameworks/support", "url": "https://cs.android.com/androidx/platform/frameworks/support" }, "name": "ViewPager2", - "website": "https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0-beta02", + "website": "https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0", "licenses": [ "Apache-2.0" - ] + ], + "organization": { + "name": "The Android Open Source Project" + } }, { "uniqueId": "androidx.viewpager:viewpager", @@ -1883,7 +2017,7 @@ "developers": [ ], - "artifactVersion": "5.2.2", + "artifactVersion": "6.0.0", "description": "", "name": "com.github.topjohnwu.libsu:core", "licenses": [ @@ -1898,7 +2032,7 @@ "developers": [ ], - "artifactVersion": "5.2.2", + "artifactVersion": "6.0.0", "description": "", "name": "com.github.topjohnwu.libsu:io", "licenses": [ @@ -1913,7 +2047,7 @@ "developers": [ ], - "artifactVersion": "5.2.2", + "artifactVersion": "6.0.0", "description": "", "name": "com.github.topjohnwu.libsu:nio", "licenses": [ @@ -1954,7 +2088,7 @@ "name": "The Android Open Source Project" } ], - "artifactVersion": "1.11.0", + "artifactVersion": "1.12.0", "description": "Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later.", "scm": { "connection": "scm:git:https://github.com/material-components/material-components-android.git", @@ -2020,7 +2154,7 @@ "developers": [ ], - "artifactVersion": "2.50", + "artifactVersion": "2.52", "description": "A fast dependency injector for Android and Java.", "scm": { "connection": "scm:git:git://github.com/google/dagger.git", @@ -2045,7 +2179,7 @@ "developers": [ ], - "artifactVersion": "2.50", + "artifactVersion": "2.52", "description": "A fast dependency injector for Android and Java.", "scm": { "connection": "scm:git:git://github.com/google/dagger.git", @@ -2070,7 +2204,7 @@ "developers": [ ], - "artifactVersion": "2.50", + "artifactVersion": "2.52", "description": "A fast dependency injector for Android and Java.", "scm": { "connection": "scm:git:git://github.com/google/dagger.git", @@ -2095,7 +2229,7 @@ "developers": [ ], - "artifactVersion": "2.50", + "artifactVersion": "2.52", "description": "A fast dependency injector for Android and Java.", "scm": { "connection": "scm:git:git://github.com/google/dagger.git", @@ -2120,7 +2254,7 @@ "developers": [ ], - "artifactVersion": "2.50", + "artifactVersion": "2.52", "description": "A fast dependency injector for Android and Java.", "scm": { "connection": "scm:git:git://github.com/google/dagger.git", @@ -2170,7 +2304,7 @@ "developers": [ ], - "artifactVersion": "2.23.0", + "artifactVersion": "2.26.1", "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", "scm": { "connection": "scm:git:https://github.com/google/error-prone.git", @@ -2216,7 +2350,7 @@ "developers": [ ], - "artifactVersion": "33.0.0-android", + "artifactVersion": "33.2.1-android", "description": "Guava is a suite of core and expanded libraries that include\n utility classes, Google's collections, I/O classes, and\n much more.", "scm": { "connection": "scm:git:https://github.com/google/guava.git", @@ -2256,14 +2390,17 @@ ], "developers": [ - + { + "organisationUrl": "https://www.google.com", + "name": "Tom Ball" + } ], - "artifactVersion": "2.8", + "artifactVersion": "3.0.0", "description": "A set of annotations that provide additional information to the J2ObjC\n translator to modify the result of translation.", "scm": { - "connection": "scm:svn:http://svn.sonatype.org/spice/trunk/oss/oss-parenti-9", - "url": "http://svn.sonatype.org/spice/trunk/oss/oss-parent-9", - "developerConnection": "scm:svn:https://svn.sonatype.org/spice/trunk/oss/oss-parent-9" + "connection": "scm:git:git://github.com/google/j2objc.git", + "url": "http://github.com/google/j2objc", + "developerConnection": "scm:git:ssh://git@github.com/google/j2objc.git" }, "name": "J2ObjC Annotations", "website": "https://github.com/google/j2objc/", @@ -2279,7 +2416,7 @@ "developers": [ ], - "artifactVersion": "3.25.1", + "artifactVersion": "4.27.3", "description": "Lite version of Protocol Buffers library. This version is optimized for code size, but does\n not guarantee API/ABI stability.", "scm": { "connection": "scm:git:https://github.com/protocolbuffers/protobuf.git", @@ -2299,7 +2436,7 @@ "developers": [ ], - "artifactVersion": "3.5.2", + "artifactVersion": "3.5.3", "description": "Core barcode encoding/decoding library", "scm": { "connection": "scm:git:https://github.com/zxing/zxing.git", @@ -2318,46 +2455,27 @@ ], "developers": [ - { - "name": "Mark Davis" - }, - { - "name": "John Emmons" - }, - { - "name": "Doug Felt" - }, - { - "name": "Deborah Goldsmith" - }, - { - "name": "Steven Loomis" - }, - { - "name": "Markus Scherer" - }, - { - "name": "Peter Edberg" - }, - { - "name": "Yoshito Umaoka" - } + ], - "artifactVersion": "73.2", - "description": "International Component for Unicode for Java (ICU4J) is a mature, widely used Java library\n providing Unicode and Globalization support", + "artifactVersion": "75.1", + "description": "International Components for Unicode for Java (ICU4J) is a mature, widely used Java library\n providing Unicode and Globalization support", "scm": { "connection": "scm:git:git://github.com/unicode-org/icu.git", "url": "https://github.com/unicode-org/icu", "developerConnection": "scm:git:git@github.com:unicode-org/icu.git" }, - "name": "ICU4J", + "name": "${proj-title} (${project.artifactId})", "website": "https://icu.unicode.org/", "licenses": [ - "574a0735435695bc65f4863817e32536" - ] + "5be2dcb917a8d00d01258ff45d1f55b2" + ], + "organization": { + "url": "https://icu.unicode.org/", + "name": "Unicode, Inc." + } }, { - "uniqueId": "com.mikepenz:aboutlibraries-core-android-debug", + "uniqueId": "com.mikepenz:aboutlibraries-core-android", "funding": [ ], @@ -2366,7 +2484,7 @@ "name": "Mike Penz" } ], - "artifactVersion": "11.1.0", + "artifactVersion": "11.2.2", "description": "AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.", "scm": { "connection": "scm:git@github.com:mikepenz/AboutLibraries.git", @@ -2412,7 +2530,7 @@ "name": "Yuichi Watanabe" } ], - "artifactVersion": "1.8.2", + "artifactVersion": "1.9.0", "description": "This is a java port of zxcvbn, which is a JavaScript password strength generator.", "scm": { "connection": "https://github.com/nulab/zxcvbn4j.git", @@ -2425,31 +2543,6 @@ "MIT" ] }, - { - "uniqueId": "com.squareup:javawriter", - "funding": [ - - ], - "developers": [ - - ], - "artifactVersion": "2.1.1", - "description": "A utility class which aids in generating Java source files.", - "scm": { - "connection": "scm:git:git://github.com/square/javawriter.git", - "url": "http://github.com/square/javawriter/", - "developerConnection": "scm:git:ssh://git@github.com/square/javawriter.git" - }, - "name": "JavaWriter", - "website": "http://github.com/square/javawriter/", - "licenses": [ - "Apache-2.0" - ], - "organization": { - "url": "http://squareup.com", - "name": "Square, Inc." - } - }, { "uniqueId": "de.hdodenhof:circleimageview", "funding": [ @@ -2496,6 +2589,42 @@ "3ca920d1875f7ad7ab04a2a331958577" ] }, + { + "uniqueId": "jakarta.inject:jakarta.inject-api", + "funding": [ + + ], + "developers": [ + { + "name": "Antoine Sabot-Durand" + }, + { + "name": "Martin Kouba" + }, + { + "name": "Tomas Remes" + }, + { + "name": "Matej Novotny" + } + ], + "artifactVersion": "2.0.1", + "description": "Jakarta Dependency Injection", + "scm": { + "connection": "scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git", + "url": "https://github.com/eclipse-ee4j/injection-api", + "developerConnection": "scm:git:ssh://git@github.com/eclipse-ee4j/injection-api.git" + }, + "name": "Jakarta Dependency Injection", + "website": "https://github.com/eclipse-ee4j/injection-api", + "licenses": [ + "Apache-2.0" + ], + "organization": { + "url": "https://www.eclipse.org", + "name": "Eclipse Foundation" + } + }, { "uniqueId": "javax.inject:javax.inject", "funding": [ @@ -2582,7 +2711,7 @@ "name": "The Legion of the Bouncy Castle Inc." } ], - "artifactVersion": "1.77", + "artifactVersion": "1.78.1", "description": "The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up.", "scm": { "url": "https://github.com/bcgit/bc-java" @@ -2608,7 +2737,7 @@ "name": "Suzanne Millstein" } ], - "artifactVersion": "3.41.0", + "artifactVersion": "3.42.0", "description": "checker-qual contains annotations (type qualifiers) that a programmer\nwrites to specify Java code for type-checking by the Checker Framework.", "scm": { "connection": "scm:git:https://github.com/typetools/checker-framework.git", @@ -2701,26 +2830,6 @@ "BSD-3-Clause" ] }, - { - "uniqueId": "org.hamcrest:hamcrest-integration", - "funding": [ - - ], - "developers": [ - - ], - "artifactVersion": "1.3", - "description": "Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock.", - "scm": { - "connection": "scm:git:git@github.com:hamcrest/JavaHamcrest.git", - "url": "https://github.com/hamcrest/JavaHamcrest" - }, - "name": "Hamcrest Integration", - "website": "https://github.com/hamcrest/JavaHamcrest", - "licenses": [ - "BSD-3-Clause" - ] - }, { "uniqueId": "org.hamcrest:hamcrest-library", "funding": [ @@ -2784,7 +2893,7 @@ "name": "Kotlin Team" } ], - "artifactVersion": "1.9.22", + "artifactVersion": "2.0.0", "description": "Kotlin Standard Library", "scm": { "connection": "scm:git:https://github.com/JetBrains/kotlin.git", @@ -2797,6 +2906,54 @@ "Apache-2.0" ] }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "funding": [ + + ], + "developers": [ + { + "organisationUrl": "https://www.jetbrains.com", + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Standard Library JDK 7 extension", + "scm": { + "connection": "scm:git:https://github.com/JetBrains/kotlin.git", + "url": "https://github.com/JetBrains/kotlin", + "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" + }, + "name": "Kotlin Stdlib Jdk7", + "website": "https://kotlinlang.org/", + "licenses": [ + "Apache-2.0" + ] + }, + { + "uniqueId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "funding": [ + + ], + "developers": [ + { + "organisationUrl": "https://www.jetbrains.com", + "name": "Kotlin Team" + } + ], + "artifactVersion": "1.8.22", + "description": "Kotlin Standard Library JDK 8 extension", + "scm": { + "connection": "scm:git:https://github.com/JetBrains/kotlin.git", + "url": "https://github.com/JetBrains/kotlin", + "developerConnection": "scm:git:https://github.com/JetBrains/kotlin.git" + }, + "name": "Kotlin Stdlib Jdk8", + "website": "https://kotlinlang.org/", + "licenses": [ + "Apache-2.0" + ] + }, { "uniqueId": "org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm", "funding": [ @@ -2830,7 +2987,7 @@ "name": "JetBrains Team" } ], - "artifactVersion": "1.8.0", + "artifactVersion": "1.8.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" @@ -2852,7 +3009,7 @@ "name": "JetBrains Team" } ], - "artifactVersion": "1.8.0", + "artifactVersion": "1.8.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" @@ -2874,7 +3031,7 @@ "name": "JetBrains Team" } ], - "artifactVersion": "1.8.0", + "artifactVersion": "1.8.1", "description": "Coroutines support libraries for Kotlin", "scm": { "url": "https://github.com/Kotlin/kotlinx.coroutines" @@ -2985,7 +3142,7 @@ "name": "Douglas Crockford" } ], - "artifactVersion": "20231013", + "artifactVersion": "20240303", "description": "JSON is a light-weight, language independent, data interchange format.\n See http://www.JSON.org/\n\n The files in this package implement JSON encoders/decoders in Java.\n It also includes the capability to convert between JSON and XML, HTTP\n headers, Cookies, and CDL.\n\n This is a reference implementation. There are a large number of JSON packages\n in Java. Perhaps someday the Java community will standardize on one. Until\n then, choose carefully.", "scm": { "connection": "scm:git:git://github.com/douglascrockford/JSON-java.git", @@ -3040,7 +3197,7 @@ "name": "Remi Forax" } ], - "artifactVersion": "9.6", + "artifactVersion": "9.7", "description": "ASM, a very small and fast Java bytecode manipulation framework", "scm": { "connection": "scm:git:https://gitlab.ow2.org/asm/asm/", @@ -3073,7 +3230,7 @@ "name": "Remi Forax" } ], - "artifactVersion": "9.6", + "artifactVersion": "9.7", "description": "Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework", "scm": { "connection": "scm:git:https://gitlab.ow2.org/asm/asm/", @@ -3106,7 +3263,7 @@ "name": "Remi Forax" } ], - "artifactVersion": "9.6", + "artifactVersion": "9.7", "description": "Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework", "scm": { "connection": "scm:git:https://gitlab.ow2.org/asm/asm/", @@ -3139,7 +3296,7 @@ "name": "Remi Forax" } ], - "artifactVersion": "9.6", + "artifactVersion": "9.7", "description": "Tree API of ASM, a very small and fast Java bytecode manipulation framework", "scm": { "connection": "scm:git:https://gitlab.ow2.org/asm/asm/", @@ -3172,7 +3329,7 @@ "name": "Remi Forax" } ], - "artifactVersion": "9.6", + "artifactVersion": "9.7", "description": "Utilities for ASM, a very small and fast Java bytecode manipulation framework", "scm": { "connection": "scm:git:https://gitlab.ow2.org/asm/asm/", @@ -3207,7 +3364,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3238,7 +3395,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3269,7 +3426,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3292,7 +3449,7 @@ "name": "The Android Open Source Projects" } ], - "artifactVersion": "1.0.2", + "artifactVersion": "1.0.12", "description": "Robolectric Nativeruntime Distribution Compat", "scm": { "connection": "https://android.googlesource.com/platform/manifest.git", @@ -3322,7 +3479,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3353,7 +3510,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3384,7 +3541,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3415,7 +3572,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3446,7 +3603,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3477,7 +3634,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3508,7 +3665,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3521,37 +3678,6 @@ "MIT" ] }, - { - "uniqueId": "org.robolectric:shadows-versioning", - "funding": [ - - ], - "developers": [ - { - "organisationUrl": "http://google.com", - "name": "Brett Chabot" - }, - { - "organisationUrl": "http://google.com", - "name": "Michael Hoisie" - }, - { - "name": "Christian Williams" - } - ], - "artifactVersion": "4.11.1", - "description": "An alternative Android testing framework.", - "scm": { - "connection": "scm:git:git://github.com/robolectric/robolectric.git", - "url": "git@github.com:robolectric/robolectric.git", - "developerConnection": "scm:git:https://github.com/robolectric/robolectric.git" - }, - "name": "versioning", - "website": "http://robolectric.org", - "licenses": [ - "MIT" - ] - }, { "uniqueId": "org.robolectric:utils", "funding": [ @@ -3570,7 +3696,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3601,7 +3727,7 @@ "name": "Christian Williams" } ], - "artifactVersion": "4.11.1", + "artifactVersion": "4.13", "description": "An alternative Android testing framework.", "scm": { "connection": "scm:git:git://github.com/robolectric/robolectric.git", @@ -3805,6 +3931,7 @@ }, "3ca920d1875f7ad7ab04a2a331958577": { "hash": "3ca920d1875f7ad7ab04a2a331958577", + "internalHash": "3ca920d1875f7ad7ab04a2a331958577", "url": "https://github.com/guardianproject/TrustedIntents/blob/master/LICENSE.txt", "name": "LGPLv2.1" }, @@ -3813,10 +3940,10 @@ "url": "https://chromium.googlesource.com/libyuv/libyuv/+/refs/heads/main/README.chromium", "name": "BSD License" }, - "574a0735435695bc65f4863817e32536": { - "hash": "574a0735435695bc65f4863817e32536", - "url": "https://raw.githubusercontent.com/unicode-org/icu/main/icu4c/LICENSE", - "name": "Unicode/ICU License" + "5be2dcb917a8d00d01258ff45d1f55b2": { + "hash": "5be2dcb917a8d00d01258ff45d1f55b2", + "url": "https://raw.githubusercontent.com/unicode-org/icu/main/LICENSE", + "name": "Unicode-3.0" }, "73252b46f36df25ef51a7994de439aea": { "hash": "73252b46f36df25ef51a7994de439aea", diff --git a/build.gradle b/build.gradle index 3574bb41..c703f753 100644 --- a/build.gradle +++ b/build.gradle @@ -24,13 +24,6 @@ allprojects { mavenCentral() google() maven { url 'https://jitpack.io' } - maven { - url 'https://jcenter.bintray.com' - content { - includeModule('com.amulyakhare', 'com.amulyakhare.textdrawable') - includeModule('info.guardianproject.trustedintents', 'trustedintents') - } - } } }