| Index: src/org/adblockplus/android/api/AppInfo.java | 
| diff --git a/src/org/adblockplus/android/api/AppInfo.java b/src/org/adblockplus/android/api/AppInfo.java | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..575dcd633e59dbed595cbc31f4a4aefa8694965d | 
| --- /dev/null | 
| +++ b/src/org/adblockplus/android/api/AppInfo.java | 
| @@ -0,0 +1,41 @@ | 
| +/* | 
| + * This file is part of Adblock Plus <http://adblockplus.org/>, | 
| + * Copyright (C) 2006-2014 Eyeo GmbH | 
| + * | 
| + * Adblock Plus is free software: you can redistribute it and/or modify | 
| + * it under the terms of the GNU General Public License version 3 as | 
| + * published by the Free Software Foundation. | 
| + * | 
| + * Adblock Plus 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 Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| + */ | 
| +package org.adblockplus.android.api; | 
| 
 
Felix Dahlke
2014/03/28 17:28:41
How about org.adblockplus.libadblockplus for the p
 
 | 
| + | 
| +public class AppInfo | 
| +{ | 
| + public final String id; | 
| + public final String version; | 
| + public final String name; | 
| + public final String application; | 
| + public final String applicationVersion; | 
| + public final String locale; | 
| + public final boolean developmentBuild; | 
| + | 
| + // TODO: Builder or not? | 
| 
 
Felix Dahlke
2014/03/28 17:28:41
IMHO this should mirror the C++ API, that is: Just
 
René Jeschke
2014/03/31 09:10:38
Why do we want to have the object non-final? We on
 
Felix Dahlke
2014/03/31 10:43:23
All I'm saying is that the Java API should mirror
 
René Jeschke
2014/04/11 12:25:53
I don't think it's a good idea to change the C++ A
 
Felix Dahlke
2014/04/11 13:01:29
Discussed this on IRC. I agree now, an immutable o
 
René Jeschke
2014/04/11 13:28:40
Done.
 
 | 
| + public AppInfo(final String id, final String version, final String name, final String application, final String applicationVersion, | 
| + final String locale, final boolean developmentBuild) | 
| + { | 
| + this.id = id; | 
| + this.version = version; | 
| + this.name = name; | 
| + this.application = application; | 
| + this.applicationVersion = applicationVersion; | 
| + this.locale = locale; | 
| + this.developmentBuild = developmentBuild; | 
| + } | 
| +} |