Skip to content

Commit

Permalink
update build and increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
tobykurien committed May 7, 2019
1 parent e66bdbf commit 7dda7d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
12 changes: 7 additions & 5 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tobykurien.google_news"
android:versionCode="18"
android:versionName="1.18" >
android:versionCode="19"
android:versionName="1.19" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="27" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand All @@ -18,7 +18,8 @@
<activity
android:name=".GoogleNewsActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name" >
android:label="@string/app_name"
android:resizeableActivity="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -45,7 +46,8 @@
<activity
android:name=".GoogleNewsActivityv11"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name" />
android:label="@string/app_name"
android:resizeableActivity="true"/>
<activity
android:name=".Preferences"
android:label="@string/app_name" />
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:2.3.3'
}
}

apply plugin: 'android'

task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
gradleVersion = '4.10.1'
}

android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
compileSdkVersion 27
buildToolsVersion '26.0.2'


dependencies {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

0 comments on commit 7dda7d3

Please sign in to comment.