Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
9bd421c
Update gradle
nonelse Jan 9, 2018
955484e
Add test options
nonelse Jan 9, 2018
68e02a4
Update Build tools
nonelse Jan 9, 2018
6bd48cb
Add test library
nonelse Jan 9, 2018
fbfc673
Change teardown
nonelse Jan 10, 2018
cbc7fc1
Add test app
nonelse Jan 10, 2018
2e7cc23
refac test app to teardown options
nonelse Jan 10, 2018
8674ce2
change header commands to library commands
nonelse Jan 10, 2018
c5c960a
Inject base path in test_info
nonelse Jan 25, 2018
3e10947
Reset all values in teardown
nonelse Jan 25, 2018
c0bba5d
Clean test library
nonelse Jan 25, 2018
f15c4f0
Typo: 'initTestSession()' -> 'startTestSession()'
Jan 29, 2018
7a9e714
Replace HashMap with SparseArray
Jan 30, 2018
73fc6ea
Cleanup
Jan 30, 2018
bf3a7e4
Enable testing by directory
Jan 30, 2018
db7e556
Cleanup app
Jan 30, 2018
bff5722
Cleanup
Jan 30, 2018
1d01fd4
Allow mix test file and dirs
nonelse Feb 1, 2018
d1dcf96
Set US locale for DecimalFormat object
Feb 6, 2018
5b61ab2
Remove isValid() check from AdjustConfig
Feb 5, 2018
6aeddb5
Add null and validity check for AdjustConfig
Feb 5, 2018
019c85c
Remove try-catch in AdjustCommandExecutor
Feb 5, 2018
a540331
Update to 4.12.1
Feb 5, 2018
2118505
Example app changes
Feb 5, 2018
72cef91
Catch general exception when parsing referrer URL
uerceg Feb 8, 2018
04ae74d
Update verbose log output line
uerceg Feb 8, 2018
bd799fa
Distinguish between different possible exceptions
uerceg Feb 8, 2018
8c5daa9
Error logging improvement
uerceg Feb 9, 2018
2247591
Specify and report exceptions in InstallReferrer
Jan 31, 2018
6ddd05d
Formatting
Feb 1, 2018
3e1da5e
Exit upon failure and report exceptions
Feb 1, 2018
faa3860
Report root cause of some exceptions
Feb 1, 2018
b5bc2e2
Update gradle
nonelse Feb 12, 2018
2a10b71
Add has sdk started state
nonelse Feb 19, 2018
36e38b0
Have install referrer start on demand
nonelse Feb 19, 2018
c35c31c
Extract sdk enabled and have it try to send install referrer
nonelse Feb 19, 2018
4e3b0b1
Comment on update handler status
nonelse Feb 19, 2018
2685f32
Add test options for install referrer
nonelse Feb 19, 2018
ffe748e
Send install referrer only after sdk start
nonelse Feb 22, 2018
44ba18c
Change location of RunnableWraper
Feb 8, 2018
c6469f3
Reposition RunnableError wrapper
Feb 22, 2018
ffa9e1f
Extract boolean parsing to util
nonelse Feb 22, 2018
2b15f64
Extract check after enabled start
nonelse Feb 22, 2018
5cecb85
Reorder event buffering check for sending packages
nonelse Feb 22, 2018
d06a931
Clean gradle
nonelse Feb 22, 2018
e5d1867
Join if else
nonelse Feb 27, 2018
d1b46f8
Clarify if evaluation order
nonelse Feb 27, 2018
9b431a7
Rename and comments
nonelse Feb 27, 2018
a1d38c2
Check after any new session
nonelse Feb 27, 2018
1e098a9
Check for install referrer with each new sub-session
uerceg Feb 28, 2018
e437a38
New version 4.12.2
uerceg Feb 28, 2018
8abcfb5
Update CHANGELOG.md
uerceg Feb 28, 2018
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
8 changes: 4 additions & 4 deletions Adjust/adjust/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
apply plugin: 'com.android.library'

def getVersionName() {
return "4.12.1"
return "4.12.2"
}

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 9
targetSdkVersion 26
targetSdkVersion 27
versionCode 1
versionName getVersionName()
consumerProguardFiles 'adjust-proguard-rules.txt'
Expand Down
Loading