This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository say-my-texts. See https://gitlab.nuiton.org/chorem/say-my-texts.git commit f0a93f7e37b6c74dd2e45043f0cca86f744301a9 Author: Kevin Morin <morin@codelutin.com> Date: Sat Nov 11 12:05:15 2017 +0100 :page_facing_up: add license header --- app/LICENSE | 15 +++++++++++++++ app/build.gradle | 9 ++++++++- .../android/saymytexts/AboutDialogFragment.java | 17 +++++++++++++++++ .../chorem/android/saymytexts/SayMyTextService.java | 19 ++++++------------- .../android/saymytexts/SayMyTextsApplication.java | 19 ++++++------------- .../chorem/android/saymytexts/SettingsActivity.java | 19 ++++++------------- .../BootCompletedBroadcastReceiver.java | 19 ++++++------------- .../DeviceConnectionBroadcastReceiver.java | 17 +++++++++++++++++ .../DictateSmsBroadcastReceiver.java | 19 ++++++------------- .../broadcastreceiver/NewTextBroadcastReceiver.java | 19 ++++++------------- .../SayNextActionBroadcastReceiver.java | 19 ++++++------------- .../android/saymytexts/model/Configuration.java | 19 ++++++------------- .../org/chorem/android/saymytexts/model/SMS.java | 19 ++++++------------- .../utils/SayMyTextsRecognitionListener.java | 19 ++++++------------- .../android/saymytexts/utils/SayMyTextsUtils.java | 19 ++++++------------- app/src/main/res/drawable/actionbar_logo.xml | 19 +++++++++++++++++++ app/src/main/res/menu/settings.xml | 19 +++++++++++++++++++ app/src/main/res/values-de/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-de/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-fr/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-fr/strings.xml | 20 +++++++++++++++++++- app/src/main/res/values-hu/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-hu/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-it/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-it/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-pl/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-pl/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-pt-rBR/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-pt-rBR/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-pt-rPT/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values-pt-rPT/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values-v21/themes.xml | 19 +++++++++++++++++++ app/src/main/res/values/arrays.xml | 19 +++++++++++++++++++ app/src/main/res/values/colors.xml | 19 +++++++++++++++++++ app/src/main/res/values/preference_keys.xml | 19 +++++++++++++++++++ app/src/main/res/values/preferences_values.xml | 19 +++++++++++++++++++ app/src/main/res/values/strings.xml | 19 +++++++++++++++++++ app/src/main/res/values/themes.xml | 19 +++++++++++++++++++ app/src/main/res/xml/preferences.xml | 19 +++++++++++++++++++ build.gradle | 5 +++++ 40 files changed, 584 insertions(+), 145 deletions(-) diff --git a/app/LICENSE b/app/LICENSE new file mode 100644 index 0000000..f6de1a9 --- /dev/null +++ b/app/LICENSE @@ -0,0 +1,15 @@ +Copyright (C) 2014 - ${year} Code Lutin + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version.limitations under the License. + +This program 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 General Public License for more details. + +You should have received a copy of the GNU General Public +License along with this program. If not, see +<http://www.gnu.org/licenses/gpl-3.0.html>. \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 5253a5a..8cec579 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,4 +31,11 @@ dependencies { testCompile 'junit:junit:4.12' } -apply plugin: "com.github.hierynomus.license" \ No newline at end of file +apply plugin: "com.github.hierynomus.license" + +license { + ext.year = Calendar.getInstance().get(Calendar.YEAR) + mapping { + java = 'SLASHSTAR_STYLE' + } +} \ No newline at end of file diff --git a/app/src/main/java/org/chorem/android/saymytexts/AboutDialogFragment.java b/app/src/main/java/org/chorem/android/saymytexts/AboutDialogFragment.java index cb5d2aa..cbc438b 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/AboutDialogFragment.java +++ b/app/src/main/java/org/chorem/android/saymytexts/AboutDialogFragment.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2014 - 2017 Code Lutin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version.limitations under the License. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + */ package org.chorem.android.saymytexts; import android.app.AlertDialog; diff --git a/app/src/main/java/org/chorem/android/saymytexts/SayMyTextService.java b/app/src/main/java/org/chorem/android/saymytexts/SayMyTextService.java index 6d1e95d..0f36882 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/SayMyTextService.java +++ b/app/src/main/java/org/chorem/android/saymytexts/SayMyTextService.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts; import android.app.Notification; import android.app.NotificationManager; diff --git a/app/src/main/java/org/chorem/android/saymytexts/SayMyTextsApplication.java b/app/src/main/java/org/chorem/android/saymytexts/SayMyTextsApplication.java index 59c3437..c91c5db 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/SayMyTextsApplication.java +++ b/app/src/main/java/org/chorem/android/saymytexts/SayMyTextsApplication.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts; import android.app.Application; import org.acra.ACRA; diff --git a/app/src/main/java/org/chorem/android/saymytexts/SettingsActivity.java b/app/src/main/java/org/chorem/android/saymytexts/SettingsActivity.java index 8266df0..309b553 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/SettingsActivity.java +++ b/app/src/main/java/org/chorem/android/saymytexts/SettingsActivity.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts; import android.app.Activity; import android.app.AlertDialog; diff --git a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/BootCompletedBroadcastReceiver.java b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/BootCompletedBroadcastReceiver.java index c2a423c..4e26997 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/BootCompletedBroadcastReceiver.java +++ b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/BootCompletedBroadcastReceiver.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.broadcastreceiver; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.broadcastreceiver; import android.content.BroadcastReceiver; import android.content.Context; diff --git a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DeviceConnectionBroadcastReceiver.java b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DeviceConnectionBroadcastReceiver.java index eff5a5a..0dcdbf1 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DeviceConnectionBroadcastReceiver.java +++ b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DeviceConnectionBroadcastReceiver.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2014 - 2017 Code Lutin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version.limitations under the License. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + */ package org.chorem.android.saymytexts.broadcastreceiver; import android.content.Intent; diff --git a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DictateSmsBroadcastReceiver.java b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DictateSmsBroadcastReceiver.java index ad44ee5..e49118e 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DictateSmsBroadcastReceiver.java +++ b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/DictateSmsBroadcastReceiver.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.broadcastreceiver; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.broadcastreceiver; import android.content.BroadcastReceiver; import android.content.Context; diff --git a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/NewTextBroadcastReceiver.java b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/NewTextBroadcastReceiver.java index 1124163..55a9ba1 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/NewTextBroadcastReceiver.java +++ b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/NewTextBroadcastReceiver.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.broadcastreceiver; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.broadcastreceiver; import android.content.BroadcastReceiver; import android.content.Context; diff --git a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/SayNextActionBroadcastReceiver.java b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/SayNextActionBroadcastReceiver.java index 459cde9..abf15dc 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/SayNextActionBroadcastReceiver.java +++ b/app/src/main/java/org/chorem/android/saymytexts/broadcastreceiver/SayNextActionBroadcastReceiver.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.broadcastreceiver; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.broadcastreceiver; import android.content.ActivityNotFoundException; import android.content.BroadcastReceiver; diff --git a/app/src/main/java/org/chorem/android/saymytexts/model/Configuration.java b/app/src/main/java/org/chorem/android/saymytexts/model/Configuration.java index 931a882..950800d 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/model/Configuration.java +++ b/app/src/main/java/org/chorem/android/saymytexts/model/Configuration.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.model; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.model; /** * @author Kevin Morin (Code Lutin) diff --git a/app/src/main/java/org/chorem/android/saymytexts/model/SMS.java b/app/src/main/java/org/chorem/android/saymytexts/model/SMS.java index eb7ec1c..ddb75d1 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/model/SMS.java +++ b/app/src/main/java/org/chorem/android/saymytexts/model/SMS.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.model; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.model; import java.io.Serializable; diff --git a/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsRecognitionListener.java b/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsRecognitionListener.java index 7f38c05..36f79fd 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsRecognitionListener.java +++ b/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsRecognitionListener.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.utils; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.utils; import android.content.Context; import android.content.Intent; diff --git a/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsUtils.java b/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsUtils.java index d6a4ea1..3999309 100644 --- a/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsUtils.java +++ b/app/src/main/java/org/chorem/android/saymytexts/utils/SayMyTextsUtils.java @@ -1,28 +1,21 @@ -package org.chorem.android.saymytexts.utils; - /* - * #%L - * Say My Texts - * $Id:$ - * $HeadURL:$ - * %% - * Copyright (C) 2014 - 2015 Code Lutin - * %% + * Copyright (C) 2014 - 2017 Code Lutin + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * + * License, or (at your option) any later version.limitations under the License. + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. - * #L% */ +package org.chorem.android.saymytexts.utils; import android.content.ContentResolver; import android.content.Context; diff --git a/app/src/main/res/drawable/actionbar_logo.xml b/app/src/main/res/drawable/actionbar_logo.xml index b352472..cc65be3 100644 --- a/app/src/main/res/drawable/actionbar_logo.xml +++ b/app/src/main/res/drawable/actionbar_logo.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item android:drawable="@drawable/ic_menu_logo" diff --git a/app/src/main/res/menu/settings.xml b/app/src/main/res/menu/settings.xml index 540e87e..83b5185 100644 --- a/app/src/main/res/menu/settings.xml +++ b/app/src/main/res/menu/settings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/action_about" diff --git a/app/src/main/res/values-de/arrays.xml b/app/src/main/res/values-de/arrays.xml index 2c8aa3f..c0a8c8a 100644 --- a/app/src/main/res/values-de/arrays.xml +++ b/app/src/main/res/values-de/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 330168a..e100406 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-fr/arrays.xml b/app/src/main/res/values-fr/arrays.xml index 53c1f2f..4593232 100644 --- a/app/src/main/res/values-fr/arrays.xml +++ b/app/src/main/res/values-fr/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 0ed7bf2..25d247e 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -1,5 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> -<!--Generated by crowdin.com--> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <string name="app_name">Say My Texts</string> <string name="app_description">Say My Texts est une application Android qui permet de lire à haute voix les SMS que vous recevez. diff --git a/app/src/main/res/values-hu/arrays.xml b/app/src/main/res/values-hu/arrays.xml index ea2d3d5..4f2560a 100644 --- a/app/src/main/res/values-hu/arrays.xml +++ b/app/src/main/res/values-hu/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 03a4093..a9b25d3 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-it/arrays.xml b/app/src/main/res/values-it/arrays.xml index 9232acb..dbf1883 100644 --- a/app/src/main/res/values-it/arrays.xml +++ b/app/src/main/res/values-it/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 2ad4349..52db76b 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-pl/arrays.xml b/app/src/main/res/values-pl/arrays.xml index 58b67e2..b401a48 100644 --- a/app/src/main/res/values-pl/arrays.xml +++ b/app/src/main/res/values-pl/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index b99d5a0..b58dfc4 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-pt-rBR/arrays.xml b/app/src/main/res/values-pt-rBR/arrays.xml index d75ae63..225f5e9 100644 --- a/app/src/main/res/values-pt-rBR/arrays.xml +++ b/app/src/main/res/values-pt-rBR/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 1dce318..5aa3a80 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-pt-rPT/arrays.xml b/app/src/main/res/values-pt-rPT/arrays.xml index d75ae63..225f5e9 100644 --- a/app/src/main/res/values-pt-rPT/arrays.xml +++ b/app/src/main/res/values-pt-rPT/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index d43f265..c78aaa3 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <!--Generated by crowdin.com--> <resources> <string name="app_name">Say My Texts</string> diff --git a/app/src/main/res/values-v21/themes.xml b/app/src/main/res/values-v21/themes.xml index b865b5d..bc2281a 100644 --- a/app/src/main/res/values-v21/themes.xml +++ b/app/src/main/res/values-v21/themes.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <style name="Theme.SayMyTextsTheme" parent="android:Theme.Material.Settings"> diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 5401fa9..fa95152 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <string-array name="preferences_reading_profile_entries"> diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 6a2b598..12d5511 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <item name="green_house" type="color">#3c6f42</item> <item name="montana" type="color">#3a3c3b</item> diff --git a/app/src/main/res/values/preference_keys.xml b/app/src/main/res/values/preference_keys.xml index a541c9c..81a388b 100644 --- a/app/src/main/res/values/preference_keys.xml +++ b/app/src/main/res/values/preference_keys.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> diff --git a/app/src/main/res/values/preferences_values.xml b/app/src/main/res/values/preferences_values.xml index f8c171c..f9ed6a2 100644 --- a/app/src/main/res/values/preferences_values.xml +++ b/app/src/main/res/values/preferences_values.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 0686542..48386e8 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <string name="app_name">Say My Texts</string> <string name="app_description">Say My Texts is an Android application which reads out loud the SMS you receive. diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index be9e573..51abac5 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <resources> <style name="Theme.SayMyTextsTheme" parent="android:Theme.Holo.Light"/> diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index 5e68287..857f287 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -1,4 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + Copyright (C) 2014 - 2017 Code Lutin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version.limitations under the License. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + +--> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="@string/preferences_settings_sms_label"> diff --git a/build.gradle b/build.gradle index 6d86b34..b6635a0 100644 --- a/build.gradle +++ b/build.gradle @@ -22,6 +22,11 @@ allprojects { repositories { jcenter() } + + license { + ext.year = Calendar.getInstance().get(Calendar.YEAR) + ext.name = 'Code Lutin' + } } task clean(type: Delete) { -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.