Skip to content

Commit 1b94653

Browse files
committed
Clean branch
1 parent 7087b03 commit 1b94653

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

library/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ android {
3535
// call regular ndk-build script from app directory
3636
task ndkBuild(type: Exec) {
3737
commandLine "${getNdkPath()}/ndk-build", '-C', file('src/main/jni/').absolutePath
38-
// println "$System.env.ANDROID_NDK_HOME/ndk-build -C ${file('src/main/jni/').absolutePath}"
39-
// "$System.env.ANDROID_NDK_HOME/ndk-build -C ${file('src/main/jni/').absolutePath}".execute().text
4038
}
4139

4240
tasks.withType(JavaCompile) {
@@ -50,7 +48,6 @@ android {
5048
}
5149
}
5250
}
53-
//
5451
}
5552

5653
dependencies {

snappydb-snippets/app/src/main/AndroidManifest.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?><!--
2+
Copyright 2014 Nabil HACHICHA
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
216
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
317
package="com.snappydb.snippets.app" >
418

snappydb-snippets/app/src/main/java/com/snappydb/snippets/app/activity/snippets/CustomKryoSerializationSnippetActivity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public Fragment getExecutionFragment() {
4949
return new PrimitiveOperationSnippetFragment();
5050
}
5151

52-
// Business Logic
5352
public static class PrimitiveOperationSnippetFragment extends BaseExecutionFragment implements View.OnClickListener, Serializable {
5453
private final static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("dd/MM HH:mm:ss");
5554
private WeakReference<EditText> mName, mKey;

0 commit comments

Comments
 (0)