Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03f45ff0 authored by Romain Hunault's avatar Romain Hunault
Browse files

Rebrand app

parent 9453ca2a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@
# Good Weather
Open source weather app for Android.

[<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/repository/browse/?fdid=org.asdtm.goodweather)
[<img src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' alt='Get it on Google Play' width='210' heigh='80'>](https://play.google.com/store/apps/details?id=org.asdtm.goodweather)
[<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/repository/browse/?fdid=foundation.e.weather)
[<img src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' alt='Get it on Google Play' width='210' heigh='80'>](https://play.google.com/store/apps/details?id=foundation.e.weather)

## Features
* Different languages: Basque, Belarusian, Czech, English, French, German, Japanese, Spanish, Polish, Russian
+3 −3
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ android {
    compileSdkVersion 25
    buildToolsVersion '25.0.2'
    defaultConfig {
        applicationId "org.asdtm.goodweather"
        applicationId "foundation.e.weather"
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 13
@@ -19,7 +19,7 @@ android {
                variant.outputs.each { output ->
                    output.outputFile = new File(
                            output.outputFile.parent,
                            output.outputFile.name.replace("app-release.apk", "GoodWeather-release-${variant.versionName}.apk"))
                            output.outputFile.name.replace("app-release.apk", "Weather-release-${variant.versionName}.apk"))
                }
            }
        }
@@ -29,7 +29,7 @@ android {
                variant.outputs.each { output ->
                    output.outputFile = new File(
                            output.outputFile.parent,
                            output.outputFile.name.replace("app-debug.apk", "GoodWeather-debug-${variant.versionName}.apk"))
                            output.outputFile.name.replace("app-debug.apk", "Weather-debug-${variant.versionName}.apk"))
                }
            }
        }
+1 −1
Original line number Diff line number Diff line
@@ -16,4 +16,4 @@
#   public *;
#}

-keep class org.asdtm.goodweather.model.WeatherForecast { *; }
 No newline at end of file
-keep class foundation.e.weather.model.WeatherForecast { *; }
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
package org.asdtm.goodweather;
package foundation.e.weather;

import android.app.Application;
import android.test.ApplicationTestCase;
+9 −9
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest
        xmlns:tools="http://schemas.android.com/tools"
        package="org.asdtm.goodweather"
        package="foundation.e.weather"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-permission android:name="android.permission.INTERNET"/>
@@ -12,7 +12,7 @@
    <uses-permission android:name="android.permission.VIBRATE"/>

    <application
        android:name=".GoodWeatherApp"
        android:name=".WeatherApp"
        android:icon="@mipmap/ic_launcher"
        android:installLocation="internalOnly"
        android:label="@string/app_name"
@@ -91,9 +91,9 @@
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
                <action android:name="android.intent.action.LOCALE_CHANGED"/>
                <action android:name="org.asdtm.goodweather.action.FORCED_APPWIDGET_UPDATE"/>
                <action android:name="org.asdtm.goodweather.action.APPWIDGET_THEME_CHANGED"/>
                <action android:name="org.asdtm.goodweather.action.APPWIDGET_UPDATE_PERIOD_CHANGED"/>
                <action android:name="foundation.e.weather.action.FORCED_APPWIDGET_UPDATE"/>
                <action android:name="foundation.e.weather.action.APPWIDGET_THEME_CHANGED"/>
                <action android:name="foundation.e.weather.action.APPWIDGET_UPDATE_PERIOD_CHANGED"/>
            </intent-filter>

            <meta-data
@@ -104,9 +104,9 @@
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
                <action android:name="android.intent.action.LOCALE_CHANGED"/>
                <action android:name="org.asdtm.goodweather.action.FORCED_APPWIDGET_UPDATE"/>
                <action android:name="org.asdtm.goodweather.action.APPWIDGET_THEME_CHANGED"/>
                <action android:name="org.asdtm.goodweather.action.APPWIDGET_UPDATE_PERIOD_CHANGED"/>
                <action android:name="foundation.e.weather.action.FORCED_APPWIDGET_UPDATE"/>
                <action android:name="foundation.e.weather.action.APPWIDGET_THEME_CHANGED"/>
                <action android:name="foundation.e.weather.action.APPWIDGET_UPDATE_PERIOD_CHANGED"/>
            </intent-filter>

            <meta-data
Loading