Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V4100 #222

Merged
merged 48 commits into from
Sep 13, 2016
Merged

V4100 #222

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a2cb24c
Update tests
nonelse May 23, 2016
c866495
Read files on the background
nonelse Jul 27, 2016
31e1795
Close and flush connections
nonelse Jul 27, 2016
6622920
Replace thread sleep
nonelse Jul 28, 2016
f6c52b9
Delay start
nonelse Jul 28, 2016
426adcd
Parameter builder static
nonelse Jul 28, 2016
1f7a07d
Add Session parameters
nonelse Jul 28, 2016
1485580
Remove session parameters
nonelse Jul 29, 2016
92201cb
Cache session parameters before start
nonelse Jul 29, 2016
9441414
Update delay packages
nonelse Aug 1, 2016
4200db0
Attribution deferred deeplink
nonelse Aug 1, 2016
a34927f
Loglevel Supress
nonelse Aug 2, 2016
7956c3d
Rename internal functions
nonelse Aug 3, 2016
086faf6
Teardown
nonelse Aug 3, 2016
2508959
Replace HandlerThread for ExecutorService
nonelse Aug 4, 2016
a55b452
Add read permission
nonelse Aug 4, 2016
377542d
Wrap executor
nonelse Aug 5, 2016
bdadb11
Generalize hash and equal helpers
nonelse Aug 24, 2016
dd200ec
Remove duplicate purchases
nonelse Aug 24, 2016
d827511
Redefine sending and pausing conditions
nonelse Aug 24, 2016
049fd5f
Clean logs
nonelse Aug 24, 2016
ed9d2bd
Update android versions
nonelse Aug 29, 2016
8808df3
Add debug tools to example app
nonelse Aug 29, 2016
4990c35
Update android versions
nonelse Aug 29, 2016
903b0b0
Update README.md
nonelse Aug 29, 2016
ce1f870
Check queue size
nonelse Aug 29, 2016
f111c83
Tests
nonelse Aug 24, 2016
624d322
Create CHANGELOG.md
nonelse Aug 30, 2016
7d271a5
Weak refs for response handlers
nonelse Aug 30, 2016
5a307f4
Weak refs for executor in timers
nonelse Aug 30, 2016
c4ec889
Replace activity state clone
nonelse Aug 30, 2016
0b59ff0
Explicit connect
nonelse Aug 31, 2016
c4a1ee7
Add user agent
nonelse Aug 31, 2016
f602373
New version v4.9.0
nonelse Aug 31, 2016
65ac5cd
Static init date formatter
nonelse Aug 31, 2016
7e1b0fa
Delete class not needed
nonelse Sep 5, 2016
2e17f68
Extract click time
nonelse Sep 5, 2016
c25002a
Send push token
nonelse Sep 5, 2016
d2d2bca
Remove external device id
nonelse Sep 5, 2016
3b518be
Update tests
nonelse Sep 5, 2016
9062bdc
Light cleanup
nonelse Sep 5, 2016
79568a4
Build tools 24.0.2
Sep 8, 2016
9360e87
Check Assert log level
nonelse Sep 12, 2016
d9cacb8
Update warning log
nonelse Sep 13, 2016
8212d0a
New version v4.10.0
nonelse Sep 13, 2016
fcfc701
Update README.md
uerceg Sep 13, 2016
99c5a38
Removing CHANGELOG.md
Sep 13, 2016
d191c06
englishafy
Sep 13, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Adjust/adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
buildToolsVersion "24.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
versionCode 1
versionName "4.7.0"
versionName "4.10.0"
}
}

Expand Down
7 changes: 5 additions & 2 deletions Adjust/adjust/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.adjust.sdk">

<application />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="21" />
android:targetSdkVersion="24" />
<application />
</manifest>
Loading