Skip to content

Commit 95384a4

Browse files
committed
Update to AMP 3.5.0
https://groups.google.com/d/topic/maven-android-developers/w5H0oRWJN9I/discussion Note that non-release builds are now debuggable by default...
1 parent 470d0a7 commit 95384a4

File tree

4 files changed

+3
-18
lines changed

4 files changed

+3
-18
lines changed

agit-integration-tests/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- We add an application tag here just so that we can indicate that
55
this package needs to link against the android.test library,
66
which is needed when building test cases. -->
7-
<application android:debuggable="true">
7+
<application>
88
<uses-library android:name="android.test.runner"/>
99
</application>
1010

agit/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal" android:versionCode="${versionCode}" android:versionName="1.29-SNAPSHOT" package="com.madgag.agit">
3-
<application android:debuggable="true" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme.App">
3+
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme.App">
44

55
<activity android:name="DashboardActivity">
66
<intent-filter>

agit/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -198,17 +198,6 @@
198198
<value>!production</value>
199199
</property>
200200
</activation>
201-
<properties>
202-
<deployment.stage>In Development</deployment.stage>
203-
<android.debuggable>true</android.debuggable>
204-
</properties>
205-
</profile>
206-
<profile>
207-
<id>production</id>
208-
<properties>
209-
<deployment.stage>In Production</deployment.stage>
210-
<android.debuggable>false</android.debuggable>
211-
</properties>
212201
</profile>
213202
<profile>
214203
<id>release</id>
@@ -266,9 +255,6 @@
266255
<skip>false</skip>
267256
<outputApk>${project.build.directory}/${project.artifactId}-${project.version}-signed-aligned.apk</outputApk>
268257
</zipalign>
269-
<manifest>
270-
<debuggable>false</debuggable>
271-
</manifest>
272258
</configuration>
273259
<executions>
274260
<execution>

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
109109
<artifactId>android-maven-plugin</artifactId>
110-
<version>3.4.0</version>
110+
<version>3.5.0</version>
111111
<extensions>true</extensions>
112112
<configuration>
113113
<sdk>
@@ -123,7 +123,6 @@
123123
</proguard>
124124
<manifest>
125125
<versionName />
126-
<debuggable>true</debuggable>
127126
</manifest>
128127
</configuration>
129128
<executions>

0 commit comments

Comments
 (0)